-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
72 lines (65 loc) · 2.25 KB
/
Copy pathDockerfile
File metadata and controls
72 lines (65 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm
# set labels
ARG IMAGE_BUILD_DATE
LABEL org.opencontainers.image.authors="tibynx"
LABEL org.opencontainers.image.created="${IMAGE_BUILD_DATE}"
LABEL org.opencontainers.image.description="Linux desktop accessible through a web browser."
LABEL org.opencontainers.image.documentation="https://github.com/tibynx/docker-webtop-kasmvnc/blob/main/README.md"
LABEL org.opencontainers.image.licenses="GPL-3.0-only"
LABEL org.opencontainers.image.source="https://github.com/tibynx/docker-webtop-kasmvnc"
LABEL org.opencontainers.image.title="Webtop"
LABEL org.opencontainers.image.url="https://github.com/tibynx/docker-webtop-kasmvnc/packages"
LABEL org.opencontainers.image.vendor="tibynx"
LABEL org.opencontainers.image.base.name="ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm"
LABEL org.opencontainers.image.base.documentation="https://github.com/linuxserver/docker-baseimage-kasmvnc/blob/master/README.md"
# branding
ENV LSIO_FIRST_PARTY=false
# title
ENV TITLE="Debian KDE"
# environment settings
ARG DEBIAN_FRONTEND="noninteractive"
RUN \
echo "**** add branding ****" && \
curl --create-dirs -o \
/etc/s6-overlay/s6-rc.d/init-adduser/branding \
https://raw.githubusercontent.com/tibynx/tibynx/refs/heads/main/branding && \
echo "**** install packages ****" && \
apt-get update -y && \
apt-get install --no-install-recommends -y \
dbus-x11 \
xdg-desktop-portal \
plasma-desktop \
plasma-workspace \
breeze-gtk-theme \
kde-config-gtk-style \
breeze-icon-theme \
qml-module-qt-labs-platform \
plasma-browser-integration \
kwin-addons \
kwin-x11 \
kdialog \
khotkeys \
kio-extras \
knewstuff-dialog \
konsole \
systemsettings \
ksystemstats \
dolphin \
firefox-esr && \
echo "**** kde tweaks ****" && \
sed -i \
's/applications:org.kde.discover.desktop,/applications:org.kde.konsole.desktop,/g' \
/usr/share/plasma/plasmoids/org.kde.plasma.taskmanager/contents/config/main.xml && \
echo "**** cleanup ****" && \
apt-get autoclean && \
rm -rf \
/config/.cache \
/config/.launchpadlib \
/var/lib/apt/lists/* \
/var/tmp/* \
/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config