summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index e135ca9..a49444b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,6 +8,6 @@ RUN pip install -r requirements.txt
COPY . .
-EXPOSE 80
+EXPOSE 8000
-CMD ["fastapi", "run", "app/main.py", "--port", "80"] \ No newline at end of file
+CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0", "app.app:app"] \ No newline at end of file