aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 0a27cb9..3b11c37 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -7,4 +7,6 @@ COPY templates /app/templates
COPY app.py pyproject.toml .python-version uv.lock /app/
RUN uv sync
+EXPOSE 8000
+
CMD ["uv", "run", "gunicorn", "--bind", "0.0.0.0:8000", "app:app", "-w", "1"]