alpine/firefox/Dockerfile
2025-01-26 12:24:50 +00:00

19 lines
305 B
Docker

# syntax = docker/dockerfile:1
#FROM myvnc/alpine/openbox
FROM myvnc/alpine/i3
USER root
# Build ARG: use "root" for debugging
ARG debug
# Install packages
RUN apk update \
&& apk upgrade \
&& apk add --no-cache \
firefox
# Tigervnc
COPY *.sh /app/init.d/
# Reset user
USER ${debug:-user}