alpine/firefox/Dockerfile

16 lines
235 B
Text
Raw Normal View History

2024-07-18 22:49:51 +00:00
# syntax = docker/dockerfile:1
2024-07-18 21:34:48 +00:00
FROM alpine/base:i3
USER root
2024-07-21 18:12:51 +00:00
# Build ARG: use "root" for debugging
ARG debug
2024-07-18 21:34:48 +00:00
# Install packages
RUN apk add --no-cache \
firefox
# Tigervnc
COPY *.sh /app/init.d/
2024-07-21 18:12:51 +00:00
# Reset user
USER ${debug:-user}