mirror of
https://git.myvelabs.com/novnc/alpine.git
synced 2025-12-18 07:56:22 +00:00
Alpine images
This commit is contained in:
commit
c8bf7daf02
16 changed files with 392 additions and 0 deletions
20
remmina/Dockerfile
Normal file
20
remmina/Dockerfile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue