rull commited on
Commit
acc8a4e
1 Parent(s): 96f653d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -12,7 +12,7 @@ WORKDIR $HOME/app
12
 
13
  COPY --chown=rull . $HOME/app
14
 
15
- RUN pip install proxy.py --no-cache-dir --upgrade pip
16
 
17
-
18
- CMD ["proxy", "--hostname", "0.0.0.0", "--port", "7860"]
 
12
 
13
  COPY --chown=rull . $HOME/app
14
 
15
+ RUN pip install -r requirements.txt --no-cache-dir --upgrade pip
16
 
17
+ CMD ["python3", "app.py"]
18
+ #CMD ["proxy", "--hostname", "0.0.0.0", "--port", "7860"]