jayfield/novnc-baseimage no longer resolves, so point at the public ich777/novnc-baseimage instead. That image lays out TurboVNC, websockify, and noVNC via standard package paths rather than /opt/TurboVNC and /tmp/websockify /tmp/noVNC, so server.sh is updated to match. Also remove any stale .X99-lock/.X11-unix socket before starting Xvnc, since /tmp survives docker stop/start and previously left Xvnc unable to rebind the display on restart. Signal exit-code math in signals.sh now uses bash arithmetic instead of bc, which isn't present in the new base image. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01RZjg4yXCYacriPz3euenQF
22 lines
622 B
Docker
22 lines
622 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM ich777/novnc-baseimage
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install --no-install-recommends net-tools socat && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN openssl req -x509 -nodes -newkey rsa:2048 -keyout /tmp/novnc.key -out /tmp/novnc.pem -days 3650 -subj "/C=US/ST=NY/L=NY/O=NY/OU=NY/CN=NY emailAddress=email@example.com"
|
|
ENV DISPLAY_NUM=99
|
|
ENV DISPLAY=:${DISPLAY_NUM}
|
|
RUN touch /root/.Xauthority
|
|
|
|
ADD scripts /opt/scripts/
|
|
|
|
EXPOSE 60${DISPLAY_NUM}
|
|
EXPOSE 5900
|
|
|
|
ENTRYPOINT ["/opt/scripts/server_start.sh", "/opt/scripts/server.sh"]
|
|
|
|
# see also
|
|
# https://github.com/ich777/docker-krusader
|