Spaces:
Running
Running
tuts4y0u
commited on
Commit
•
637de5c
1
Parent(s):
ece4b1f
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -6,7 +6,8 @@ RUN apt install xfce4-terminal lxde aqemu sudo curl wget aria2 qemu-system-x86 h
|
|
6 |
RUN git clone https://github.com/novnc/noVNC.git noVNC
|
7 |
RUN echo $VNC_PWD | vncpasswd -f > /home/user/vnc_password
|
8 |
RUN chmod u+r,g+r,o+r /home/user/vnc_password
|
9 |
-
RUN echo $VNC_PWD
|
|
|
10 |
ENV HOME=/home/user \
|
11 |
PATH=/home/user/.local/bin:$PATH
|
12 |
CMD vncserver -SecurityTypes None -PasswordFile /home/user/vnc_password -geometry 1366x768 && ./noVNC/utils/novnc_proxy --vnc localhost:5901 --listen 0.0.0.0:7860
|
|
|
6 |
RUN git clone https://github.com/novnc/noVNC.git noVNC
|
7 |
RUN echo $VNC_PWD | vncpasswd -f > /home/user/vnc_password
|
8 |
RUN chmod u+r,g+r,o+r /home/user/vnc_password
|
9 |
+
RUN echo $VNC_PWD > /home/user/vnc_password1
|
10 |
+
RUN cat /home/user/vnc_password1
|
11 |
ENV HOME=/home/user \
|
12 |
PATH=/home/user/.local/bin:$PATH
|
13 |
CMD vncserver -SecurityTypes None -PasswordFile /home/user/vnc_password -geometry 1366x768 && ./noVNC/utils/novnc_proxy --vnc localhost:5901 --listen 0.0.0.0:7860
|