alpine/firefox/Dockerfile
2025-01-20 09:26:41 +00:00

18 lines
278 B
Docker

# syntax = docker/dockerfile:1
FROM myvnc/alpine/i3
USER root
# Build ARG: use "root" for debugging
ARG debug
# Install packages
RUN apk update \
&& apk upgrade \
&& apk add --no-cache \
firefox
# Tigervnc
COPY *.sh /app/init.d/
# Reset user
USER ${debug:-user}