Initial commit

This commit is contained in:
kamaji
2026-01-26 04:46:56 -06:00
commit 9f45ed3452
13 changed files with 3024 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY templates/ templates/
COPY sites.conf .
RUN mkdir -p uploads
EXPOSE 5000
CMD ["gunicorn", "-w", "2", "-b", "0.0.0.0:5000", "--access-logfile", "-", "app:app"]