Initial save server

This commit is contained in:
Johannes
2026-03-12 23:58:37 +01:00
commit ba71ca4a35
4 changed files with 87 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
VOLUME ["/saves"]
EXPOSE 5000
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "app:app"]