adds ci cd

This commit is contained in:
2026-01-11 22:06:41 -05:00
parent 4885488b51
commit e7d32152d5
3 changed files with 70 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY templates ./templates
COPY static ./static
EXPOSE 5000
CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]