Yaron Koresh commited on
Commit
fcf4b57
·
verified ·
1 Parent(s): e38640f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -34,9 +34,9 @@ run git lfs install --force
34
 
35
  run PATH="${PATH:+${PATH}:}$HOME/miniconda/bin"
36
 
37
- run python -m pip install --upgrade --no-cache-dir pip
38
- run python -m pip install --upgrade --no-cache-dir -r deps.txt
39
 
40
  EXPOSE 7860
41
 
42
- ENTRYPOINT ["python", "./code.py"]
 
34
 
35
  run PATH="${PATH:+${PATH}:}$HOME/miniconda/bin"
36
 
37
+ run python3 -m pip install --upgrade --no-cache-dir pip
38
+ run python3 -m pip install --upgrade --no-cache-dir -r deps.txt
39
 
40
  EXPOSE 7860
41
 
42
+ ENTRYPOINT ["python3", "./code.py"]