Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -20,11 +20,7 @@ RUN wget https://download.webmin.com/jcameron-key.asc && \
|
|
20 |
# 添加 Webmin 的源
|
21 |
RUN echo "deb https://download.webmin.com/download/repository sarge contrib" >> /etc/apt/sources.list.d/webmin.list
|
22 |
|
23 |
-
# 更新包列表并安装 Webmin
|
24 |
-
RUN apt-get update && \
|
25 |
-
apt-get install -y webmin
|
26 |
|
27 |
-
RUN apt-get update
|
28 |
# 安装所需的软件包并清理APT缓存
|
29 |
RUN apt-get update && apt-get install -y \
|
30 |
wget \
|
@@ -41,6 +37,7 @@ RUN apt-get update && apt-get install -y \
|
|
41 |
util-linux \
|
42 |
sqlite3 \
|
43 |
tzdata \
|
|
|
44 |
# 下载并执行 install.sh 脚本
|
45 |
# 同时运行 python main.py 和 bash install.sh
|
46 |
# RUN python main.py & \
|
|
|
20 |
# 添加 Webmin 的源
|
21 |
RUN echo "deb https://download.webmin.com/download/repository sarge contrib" >> /etc/apt/sources.list.d/webmin.list
|
22 |
|
|
|
|
|
|
|
23 |
|
|
|
24 |
# 安装所需的软件包并清理APT缓存
|
25 |
RUN apt-get update && apt-get install -y \
|
26 |
wget \
|
|
|
37 |
util-linux \
|
38 |
sqlite3 \
|
39 |
tzdata \
|
40 |
+
webmin
|
41 |
# 下载并执行 install.sh 脚本
|
42 |
# 同时运行 python main.py 和 bash install.sh
|
43 |
# RUN python main.py & \
|