add: base

This commit is contained in:
2026-02-19 14:15:26 +00:00
parent 605348edd3
commit 9016e40c75
6 changed files with 21 additions and 1 deletions

10
server/src/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.11-slim
COPY . .
WORKDIR /data
RUN pip install --no-cache-dir -r /data/requirements.txt
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]