Spaces:
Running
Running
tuts4y0u
commited on
Commit
·
9afe8fd
1
Parent(s):
682cc41
Update Dockerfile
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
FROM debian:sid
|
2 |
RUN apt update
|
3 |
-
RUN
|
4 |
-
RUN chown root:shadow /etc/shadow
|
5 |
-
RUN apt install -y xfce4-terminal lxde aqemu sudo curl wget aria2 qemu-system-x86 htop chromium screen tigervnc-standalone-server python3-pip python3-websockify python3 git fuse libfuse2 xdotool
|
6 |
RUN apt remove -y lxlock
|
7 |
RUN apt remove -y light-locker xscreensaver-data xscreensaver
|
|
|
|
|
|
|
8 |
RUN sed -i '/@xscreensaver -no-splash/d' /etc/xdg/lxsession/LXDE/autostart
|
9 |
RUN git clone https://github.com/novnc/noVNC.git noVNC
|
10 |
RUN mkdir -p /home/user/.vnc
|
|
|
1 |
FROM debian:sid
|
2 |
RUN apt update
|
3 |
+
RUN apt install -y bash xfce4-terminal lxde aqemu sudo curl wget aria2 qemu-system-x86 htop chromium screen tigervnc-standalone-server python3-pip python3-websockify python3 git fuse libfuse2 xdotool
|
|
|
|
|
4 |
RUN apt remove -y lxlock
|
5 |
RUN apt remove -y light-locker xscreensaver-data xscreensaver
|
6 |
+
RUN useradd -m -u 1000 user
|
7 |
+
RUN chown root:shadow /etc/shadow
|
8 |
+
RUN chsh -s /bin/bash username
|
9 |
RUN sed -i '/@xscreensaver -no-splash/d' /etc/xdg/lxsession/LXDE/autostart
|
10 |
RUN git clone https://github.com/novnc/noVNC.git noVNC
|
11 |
RUN mkdir -p /home/user/.vnc
|