first commit
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
2025-07-23 21:33:16 -03:00
commit 21a35cb8e2
8 changed files with 130 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.11-slim
WORKDIR /app
COPY app.py templates/ ./
RUN pip install --no-cache Flask Jinja2 gunicorn
# expose port 80
CMD ["gunicorn", "-b", "0.0.0.0:80", "app:app"]