Spaces:
Running
Running
tuts4y0u
commited on
Commit
•
42bc02c
1
Parent(s):
765da4e
Update Dockerfile
Browse files- Dockerfile +23 -2
Dockerfile
CHANGED
@@ -2,8 +2,29 @@ FROM debian:sid
|
|
2 |
RUN useradd -m -u 1000 user
|
3 |
RUN chown root:shadow /etc/shadow
|
4 |
RUN apt update
|
5 |
-
RUN apt install
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
RUN git clone https://github.com/novnc/noVNC.git noVNC
|
8 |
RUN mkdir -p /home/user/.vnc
|
9 |
ARG VNC_RESOLUTION
|
|
|
2 |
RUN useradd -m -u 1000 user
|
3 |
RUN chown root:shadow /etc/shadow
|
4 |
RUN apt update
|
5 |
+
RUN apt install -y xfce4-terminal \
|
6 |
+
lxqt lightdm xfce4-goodies \
|
7 |
+
xfce4-appmenu-plugin \
|
8 |
+
xfce4-eyes-plugin \
|
9 |
+
xfce4-indicator-plugin \
|
10 |
+
xfce4-mpc-plugin \
|
11 |
+
aqemu \
|
12 |
+
sudo \
|
13 |
+
curl \
|
14 |
+
wget \
|
15 |
+
aria2 \
|
16 |
+
qemu-system-x86 \
|
17 |
+
htop \
|
18 |
+
chromium \
|
19 |
+
screen \
|
20 |
+
tigervnc-standalone-server \
|
21 |
+
python3-pip \
|
22 |
+
python3-websockify \
|
23 |
+
python3 \
|
24 |
+
git \
|
25 |
+
fuse \
|
26 |
+
libfuse2 \
|
27 |
+
xdotool
|
28 |
RUN git clone https://github.com/novnc/noVNC.git noVNC
|
29 |
RUN mkdir -p /home/user/.vnc
|
30 |
ARG VNC_RESOLUTION
|