base-vnc/Dockerfile
Merith f9c58ca098
All checks were successful
Build Docker Image on Commit / build-and-publish (push) Successful in 10s
Build and Publish Docker Image on Tag / build-and-publish (push) Successful in 8s
make it smol.
nuked the VNC server as that added, i shit ye not, 350mb
2025-06-05 05:26:41 +00:00

18 lines
332 B
Docker

FROM alpine:latest
# Install only essential packages
RUN apk add --no-cache \
xterm bash \
procps inetutils-telnet \
fontconfig \
i3wm i3status
# Configure i3
RUN mkdir -p /root/.config/i3
COPY i3.config /root/.config/i3/config
# Entrypoint script
COPY vnc.sh /vnc.sh
RUN chmod +x /vnc.sh
ENTRYPOINT ["/vnc.sh"]