hpratapsingh commited on
Commit
80b519c
1 Parent(s): 09ac226

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -1,8 +1,7 @@
1
- # Build Queued at 2023-12-25 11:41:33 / Commit SHA: f4c26b8
2
-
3
  FROM python:3.9
4
  WORKDIR /code
5
  COPY ./requirements.txt /code/requirements.txt
6
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
7
  COPY . .
8
  CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]
 
 
 
1
  FROM python:3.9
2
  WORKDIR /code
3
  COPY ./requirements.txt /code/requirements.txt
4
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
5
+ RUN pip install gunicorn
6
  COPY . .
7
  CMD ["gunicorn", "-b", "0.0.0.0:7860", "app:app"]