Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -25,7 +25,7 @@ RUN apt-get update && apt-get install -y \
|
|
25 |
sqlite3 \
|
26 |
tzdata
|
27 |
# 下载并执行 install.sh 脚本
|
28 |
-
RUN
|
29 |
# 同时运行 python main.py 和 bash install.sh
|
30 |
# RUN python main.py & \
|
31 |
# bash quick_start.sh
|
|
|
25 |
sqlite3 \
|
26 |
tzdata
|
27 |
# 下载并执行 install.sh 脚本
|
28 |
+
RUN URL=https://www.aapanel.com/script/install_7.0_en.sh && if [ -f /usr/bin/curl ];then curl -ksSO "$URL" ;else wget --no-check-certificate -O install_7.0_en.sh "$URL";fi;bash install_7.0_en.sh aapanel
|
29 |
# 同时运行 python main.py 和 bash install.sh
|
30 |
# RUN python main.py & \
|
31 |
# bash quick_start.sh
|