Commit
·
447ef41
1
Parent(s):
fe70d38
modify dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -22,6 +22,6 @@ FROM python-base
|
|
22 |
COPY --from=python-builder /app/.venv ./.venv
|
23 |
COPY ./app /app
|
24 |
|
25 |
-
EXPOSE
|
26 |
|
27 |
-
ENTRYPOINT gunicorn --bind 0.0.0.0:
|
|
|
22 |
COPY --from=python-builder /app/.venv ./.venv
|
23 |
COPY ./app /app
|
24 |
|
25 |
+
EXPOSE 7860
|
26 |
|
27 |
+
ENTRYPOINT gunicorn --bind 0.0.0.0:7860 main:app
|