lalithadevi commited on
Commit
c54be12
1 Parent(s): 25f53e9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,5 +3,5 @@ WORKDIR /webapp
3
  COPY . .
4
  RUN pip install --upgrade pip
5
  RUN pip install --no-cache-dir -r requirements.txt
6
- CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "120", "--workers=1", "--threads=1", "--worker-connections=1000", "app:app"]
7
  EXPOSE 7860
 
3
  COPY . .
4
  RUN pip install --upgrade pip
5
  RUN pip install --no-cache-dir -r requirements.txt
6
+ CMD ["gunicorn", "-b", "0.0.0.0:7860", "--timeout", "120", "app:app"]
7
  EXPOSE 7860