Akshat1000 commited on
Commit
e441092
·
verified ·
1 Parent(s): 7d441a9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,5 +10,5 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
10
 
11
  COPY --chown=user . /app
12
 
13
- # Update this line to use gunicorn instead of uvicorn
14
- CMD ["gunicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
10
 
11
  COPY --chown=user . /app
12
 
13
+ # Set gunicorn as entrypoint with default arguments
14
+ ENTRYPOINT ["gunicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]