Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -14,5 +14,6 @@ RUN pip install gunicorn
|
|
14 |
RUN pip install -r requirements.txt
|
15 |
|
16 |
COPY . .
|
17 |
-
|
|
|
18 |
CMD ["--host", "0.0.0.0", "--port", "7860"]
|
|
|
14 |
RUN pip install -r requirements.txt
|
15 |
|
16 |
COPY . .
|
17 |
+
|
18 |
+
ENTRYPOINT ["uvicorn", "app:app"]
|
19 |
CMD ["--host", "0.0.0.0", "--port", "7860"]
|