From 04892822306bf9a01de19cc70bcfc59d7fca9f8f Mon Sep 17 00:00:00 2001 From: Dylan Bolger Date: Tue, 18 Aug 2026 11:44:36 -0500 Subject: move from fastapi to flask, various cleanups involved --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Dockerfile') 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 -- cgit v1.2.3