Spaces:
Running
Running
File size: 717 Bytes
10e41df 28362c6 71206c4 02b1353 5e54d67 10e41df adf0168 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM debian:sid
RUN apt update
RUN useradd -m -u 1000 user
RUN apt install xfce4-terminal lxde aqemu sudo curl wget aria2 qemu-system-x86 htop chromium screen tigervnc-standalone-server python3-pip python3-websockify python3 git -y
RUN git clone https://github.com/novnc/noVNC.git noVNC
ARG VNC_PWD
RUN mkdir -p /root/.vnc /home/user/.vnc
RUN echo $VNC_PWD | vncpasswd -f > /root/.vnc/passwd
RUN echo $VNC_PWD | vncpasswd -f > /home/user/.vnc/passwd
RUN chmod -R 777 /root/.vnc /home/user/.vnc /tmp
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
CMD vncserver -SecurityTypes VncAuth -rfbauth /home/user/.vnc/passwd -geometry 1366x768 && ./noVNC/utils/novnc_proxy --vnc localhost:5901 --listen 0.0.0.0:7860 |