tianlong12
commited on
Commit
•
0eb7533
1
Parent(s):
c8d3d9b
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -3,8 +3,9 @@ FROM python:3.9
|
|
3 |
WORKDIR /code
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
6 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
7 |
|
8 |
-
COPY
|
9 |
|
10 |
-
CMD ["
|
|
|
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 . /code
|
10 |
|
11 |
+
CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860"]
|