Update firefox/Dockerfile

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

View file

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