|
|
|
FROM debian:sid |
|
|
|
|
|
RUN useradd -m -u 1000 user |
|
|
|
|
|
RUN apt update |
|
RUN apt install software-properties-common apt-transport-https curl -y |
|
|
|
|
|
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 && rm -rf /var/lib/apt/lists/* |
|
|
|
|
|
RUN systemctl get-default |
|
RUN systemctl set-default graphical.target |
|
|
|
|
|
RUN dpkg --add-architecture i386 |
|
|
|
|
|
|
|
|
|
RUN git clone https://github.com/novnc/noVNC.git noVNC |
|
ENV HOME=/home/user \ |
|
PATH=/home/user/.local/bin:$PATH |
|
|
|
|
|
CMD vncserver -SecurityTypes None -geometry 1280x600 && ./noVNC/utils/novnc_proxy --vnc localhost:5901 --listen 0.0.0.0:7860 |
|
|