Spaces:
Paused
Paused
Upload Dockerfile
Browse files- Dockerfile +27 -0
Dockerfile
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM debian:sid
|
| 2 |
+
RUN apt update
|
| 3 |
+
RUN useradd -m -u 1000 user
|
| 4 |
+
RUN apt install obs-studio
|
| 5 |
+
RUN apt install qbittorrent -y
|
| 6 |
+
RUN apt install ffmpeg -y
|
| 7 |
+
RUN apt install openjdk-17-jdk -y
|
| 8 |
+
RUN apt install xfce4-terminal -y
|
| 9 |
+
RUN apt install lxde -y
|
| 10 |
+
RUN apt install aqemu -y
|
| 11 |
+
RUN apt install curl -y
|
| 12 |
+
RUN apt install wget -y
|
| 13 |
+
RUN apt install aria2 -y
|
| 14 |
+
RUN apt install qemu-system-x86 -y
|
| 15 |
+
RUN apt install htop -y
|
| 16 |
+
RUN apt install aria2 -y
|
| 17 |
+
RUN apt install chromium -y
|
| 18 |
+
RUN apt install screen -y
|
| 19 |
+
RUN apt install tigervnc-standalone-server -y
|
| 20 |
+
RUN apt install python3-pip -y
|
| 21 |
+
RUN apt install python3-websockify -y
|
| 22 |
+
RUN apt install python3 -y
|
| 23 |
+
RUN apt install git -y
|
| 24 |
+
rUN git clone https://github.com/OptiJuegos/noVNC.git noVNC
|
| 25 |
+
ENV HOME=/home/user \
|
| 26 |
+
PATH=/home/user/.local/bin:$PATH
|
| 27 |
+
CMD vncserver -SecurityTypes None -geometry 1366x768 && ./noVNC/utils/novnc_proxy --vnc localhost:5901 --listen 0.0.0.0:7860
|