Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
from python:3.11
|
2 |
-
ARG
|
3 |
run apt update -y && apt upgrade -y
|
4 |
copy . .
|
5 |
run git clone https://github.com/rupeshs/fastsdcpu
|
@@ -8,6 +8,6 @@ workdir fastsdcpu
|
|
8 |
run pip install --upgrade pip requests
|
9 |
run chmod +x install.sh
|
10 |
run python ../ci.py
|
11 |
-
run
|
12 |
run python ../cfg.py
|
13 |
CMD bash ./start-webui.sh
|
|
|
1 |
from python:3.11
|
2 |
+
ARG TOKEN
|
3 |
run apt update -y && apt upgrade -y
|
4 |
copy . .
|
5 |
run git clone https://github.com/rupeshs/fastsdcpu
|
|
|
8 |
run pip install --upgrade pip requests
|
9 |
run chmod +x install.sh
|
10 |
run python ../ci.py
|
11 |
+
run ../dl.py $TOKEN
|
12 |
run python ../cfg.py
|
13 |
CMD bash ./start-webui.sh
|