base-vnc/Dockerfile
Merith 427726ea22
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 13s
enable DHCP on gns3 use
2025-06-05 05:46:45 +00:00

18 lines
332 B
Docker

FROM alpine:latest
# Install only essential packages
RUN apk add --no-cache \
xterm bash procps \
iproute2 iputils \
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"]