mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-18 18:06:22 +00:00
13 lines
193 B
Docker
13 lines
193 B
Docker
# syntax = docker/dockerfile:1
|
|
FROM alpine/base:i3
|
|
USER root
|
|
|
|
# Install packages
|
|
RUN apk add --no-cache \
|
|
firefox
|
|
|
|
# Tigervnc
|
|
COPY *.sh /app/init.d/
|
|
|
|
# Reset user home directory
|
|
USER user
|