3v324v23 commited on
Commit
2dc90a3
·
1 Parent(s): 887f465
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -2,10 +2,10 @@ FROM python:3.12.2
2
 
3
  WORKDIR /code
4
 
5
- COPY ./test_requirements.txt /code/test_requirements.txt
6
 
7
- RUN pip install --no-cache-dir --upgrade -r /code/test_requirements.txt
8
 
9
  COPY . .
10
 
11
- CMD ["gunicorn","-b", "0.0.0.0:7860", "test:app"]
 
2
 
3
  WORKDIR /code
4
 
5
+ COPY ./requirements.txt /code/requirements.txt
6
 
7
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
  COPY . .
10
 
11
+ CMD ["gunicorn","-b", "0.0.0.0:7860", "main:app"]