andreyunic23 commited on
Commit
0213aca
·
1 Parent(s): d9f84a0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -21,7 +21,7 @@ RUN pip install --no-cache-dir -r requirements.txt
21
 
22
  COPY --chown=user . $HOME/app
23
 
24
- CMD exec gunicorn --bind :7860 --workers 1 --threads 8 --timeout 0 app:app
25
 
26
 
27
 
 
21
 
22
  COPY --chown=user . $HOME/app
23
 
24
+ CMD gunicorn --bind :7860 --workers 1 --threads 8 --timeout 0 app:app
25
 
26
 
27