sca255 commited on
Commit
b7451de
1 Parent(s): d9655bd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,5 +1,5 @@
1
  from python:3.11
2
- ARG token_civit
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 python ../dl.py $token_civit
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