alpine/plasma/Dockerfile

20 lines
416 B
Text
Raw Normal View History

2024-07-19 07:05:19 +00:00
# syntax = docker/dockerfile:1.2
FROM alpine/base
USER root
# X session environment variable
ENV STARTXBIN startplasma-x11
# Run
RUN apk add --no-cache \
tigervnc \
plasma-desktop-meta \
font-dejavu \
firefox \
2024-07-19 07:14:57 +00:00
&& printf '%s\n' 'permit nopass user as root cmd /sbin/apk args add' >>/etc/doas.conf
2024-07-19 07:05:19 +00:00
# Tigervnc initialization scripts
COPY *.sh /app/init.d/
# Reset user home directory
USER user