mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-18 07:46:20 +00:00
20 lines
313 B
Text
20 lines
313 B
Text
|
|
# syntax = docker/dockerfile:1.2
|
||
|
|
FROM alpine/base:i3
|
||
|
|
USER root
|
||
|
|
|
||
|
|
# Choose a terminal
|
||
|
|
ENV TERMINAL=xterm
|
||
|
|
|
||
|
|
# Install packages
|
||
|
|
RUN apk add --no-cache \
|
||
|
|
openssh \
|
||
|
|
remmina \
|
||
|
|
${TERMINAL}
|
||
|
|
|
||
|
|
# Tigervnc
|
||
|
|
COPY *.sh /app/init.d/
|
||
|
|
RUN chmod +x /app/init.d/*
|
||
|
|
|
||
|
|
# Reset user home directory
|
||
|
|
USER user
|
||
|
|
WORKDIR /home/user
|