generated from github/codespaces-blank
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.aarch64
66 lines (59 loc) · 1.9 KB
/
Dockerfile.aarch64
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
FROM ghcr.io/linuxserver/baseimage-kasmvnc:arm64v8-ubuntujammy
# set labels
ARG BUILD_DATE
ARG VERSION
LABEL build_version="Linuxserver.io version: ${VERSION} Build-date: ${BUILD_DATE}"
LABEL maintainer="tibor309"
LABEL org.opencontainers.image.description="Linux desktop accessible trough a web browser."
LABEL org.opencontainers.image.source=https://github.com/tibor309/webtop
LABEL org.opencontainers.image.url=https://github.com/tibor309/webtop/packages
LABEL org.opencontainers.image.licenses=GPL-3.0
# title
ENV TITLE="Ubuntu Cinnamon"
# environment settings
ARG DEBIAN_FRONTEND="noninteractive"
# prevent Ubuntu's firefox stub from being installed
COPY /root/etc/apt/preferences.d/firefox-no-snap /etc/apt/preferences.d/firefox-no-snap
RUN \
echo "**** add icon ****" && \
curl -o \
/kclient/public/icon.png \
https://raw.githubusercontent.com/tibor309/icons/master/icons/ubuntu-cinnamon/ubuntu_cinnamon_logo_256x256.png && \
curl -o \
/kclient/public/favicon.ico \
https://raw.githubusercontent.com/tibor309/icons/master/icons/ubuntu-cinnamon/ubuntu_cinnamon_icon_32x32.ico && \
echo "**** install packages ****" && \
add-apt-repository -y ppa:mozillateam/ppa && \
apt-get update -y && \
add-apt-repository -y ppa:ubuntucinnamonremix/all && \
apt-get update -y && \
apt-get install --no-install-recommends -y \
fonts-ubuntu \
ubuntucinnamon-environment \
ubuntucinnamon-wallpapers \
yaru-cinnamon-theme-icon \
yaru-cinnamon-theme-gtk \
gnome-system-monitor \
gnome-calculator \
gnome-calendar \
gnome-terminal \
firefox \
rhythmbox \
eog \
gedit \
evince \
file-roller \
celluloid && \
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