Create Dockerfile
Browse files- Dockerfile +31 -0
Dockerfile
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM debian:sid
|
2 |
+
RUN apt update
|
3 |
+
RUN useradd -m -u 1000 user
|
4 |
+
RUN apt install xfce4-terminal lxde aqemu sudo curl wget xdotool aria2 qemu-system-x86 htop chromium screen tigervnc-standalone-server python3-pip python3-websockify python3 git -y
|
5 |
+
RUN git clone https://github.com/novnc/noVNC.git noVNC
|
6 |
+
RUN mkdir -p /home/user/.vnc
|
7 |
+
|
8 |
+
# 添加微软的 GPG 密钥
|
9 |
+
RUN wget -O - https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor | sudo tee /usr/share/keyrings/microsoft.gpg
|
10 |
+
|
11 |
+
# 添加微软的 Edge 仓库
|
12 |
+
RUN sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge.list'
|
13 |
+
|
14 |
+
# 安装 Edge 浏览器
|
15 |
+
RUN apt update && apt install -y microsoft-edge-stable
|
16 |
+
|
17 |
+
|
18 |
+
RUN mkdir -p /home/user/Desktop/myshell
|
19 |
+
ARG VNC_PWD
|
20 |
+
ARG VNC_RESOLUTION
|
21 |
+
RUN echo $VNC_PWD | vncpasswd -f > /home/user/.vnc/passwd
|
22 |
+
RUN chmod -R 777 /home/user/.vnc /tmp /home/user/Desktop/myshell
|
23 |
+
ENV HOME=/home/user \
|
24 |
+
PATH=/home/user/.local/bin:$PATH
|
25 |
+
# 假设pushcookie文件夹在当前目录下
|
26 |
+
|
27 |
+
ADD pushcookie/ /home/user/Desktop/myshell/
|
28 |
+
# 使用RUN指令执行chmod命令给予*.sh文件可执行权限
|
29 |
+
RUN chmod +x /home/user/Desktop/myshell/*.sh
|
30 |
+
|
31 |
+
CMD vncserver -SecurityTypes VncAuth -rfbauth /home/user/.vnc/passwd -geometry $VNC_RESOLUTION && ./noVNC/utils/novnc_proxy --vnc localhost:5901 --listen 0.0.0.0:7860
|