mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-17 22:56:21 +00:00
18 lines
276 B
Docker
18 lines
276 B
Docker
# syntax = docker/dockerfile:1
|
|
FROM myvnc/base: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}
|