alpine/firefox/Dockerfile

19 lines
305 B
Text
Raw Permalink Normal View History

2024-07-18 22:49:51 +00:00
# syntax = docker/dockerfile:1
2025-01-26 12:24:50 +00:00
#FROM myvnc/alpine/openbox
FROM myvnc/alpine/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 update \
&& apk upgrade \
&& apk add --no-cache \
2024-07-18 21:34:48 +00:00
firefox
# Tigervnc
COPY *.sh /app/init.d/
2024-07-21 18:12:51 +00:00
# Reset user
USER ${debug:-user}