alpine/firefox/Dockerfile

16 lines
234 B
Text
Raw Normal View History

2024-07-18 22:49:51 +00:00
# syntax = docker/dockerfile:1
2024-07-22 01:16:50 +00:00
FROM myvnc/base:i3
2024-07-18 21:34:48 +00:00
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}