-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
26 lines (21 loc) · 1.33 KB
/
Dockerfile
File metadata and controls
26 lines (21 loc) · 1.33 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
FROM ghcr.io/linuxserver/webtop:alpine-kde
LABEL org.opencontainers.image.description "My custom version of LinuxServers Webtop"
# Environment
ENV TZ "Australia/Melbourne"
ENV KEYBOARD "en-us-qwerty"
RUN apk update; apk upgrade; \
apk add zsh zsh-vcs zsh-zftp zsh-syntax-highlighting zsh-calendar zsh-autosuggestions git git-lfs openssh-client curl wget; \
mkdir -p "/usr/share/fonts/MesloLGS NF"; \
wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Regular.ttf -O "/usr/share/fonts/MesloLGS NF/MesloLGS NF Regular.ttf"; \
wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold.ttf -O "/usr/share/fonts/MesloLGS NF/MesloLGS NF Bold.ttf"; \
wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Italic.ttf -O "/usr/share/fonts/MesloLGS NF/MesloLGS NF Italic.ttf"; \
wget https://github.com/romkatv/powerlevel10k-media/raw/master/MesloLGS%20NF%20Bold%20Italic.ttf -O "/usr/share/fonts/MesloLGS NF/MesloLGS NF Bold Italic.ttf"; \
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git /config/powerlevel10k; \
sed -i 's/bash/zsh/g' /etc/passwd; \
apk add tzdata; \
cp /usr/share/zoneinfo/$TZ /etc/localtime; \
echo $TZ > /etc/timezone
COPY config/* /config/.
COPY autostart /config/.config/autostart
EXPOSE 3000
VOLUME /config