We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d1536e commit a93d566Copy full SHA for a93d566
Dockerfile
@@ -19,7 +19,7 @@ COPY --chown=fastmock:fastmock . .
19
USER 999
20
21
ENV PATH="/usr/app/venv/bin:$PATH"
22
-EXPOSE 5000
+EXPOSE 8000
23
24
25
ENTRYPOINT ["./boot.sh"]
boot.sh
@@ -2,5 +2,5 @@
2
source venv/bin/activate
3
4
alembic upgrade head
5
-exec uvicorn --host 0.0.0.0 --port 5000 app.main:app
+exec uvicorn --host 0.0.0.0 --port 8000 app.main:app
6
0 commit comments