Update firefox/Dockerfile

This commit is contained in:
myve 2024-07-21 18:12:51 +00:00
commit 9d03a67217

View file

@ -2,6 +2,9 @@
FROM alpine/base:i3 FROM alpine/base:i3
USER root USER root
# Build ARG: use "root" for debugging
ARG debug
# Install packages # Install packages
RUN apk add --no-cache \ RUN apk add --no-cache \
firefox firefox
@ -9,5 +12,5 @@ RUN apk add --no-cache \
# Tigervnc # Tigervnc
COPY *.sh /app/init.d/ COPY *.sh /app/init.d/
# Reset user home directory # Reset user
USER user USER ${debug:-user}