initial commit

This commit is contained in:
Chris Cowley 2025-04-02 14:19:40 +02:00
commit 5e8991fabc
3 changed files with 31 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM python:3-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["gunicorn", "--workers=3", "--bind", ":8000", "app:app"]