This commit is contained in:
Anthony Segura
2026-08-05 10:50:17 -05:00
parent 6c8e869132
commit 30f3302853
4 changed files with 29 additions and 0 deletions

8
.dockerignore Normal file
View File

@@ -0,0 +1,8 @@
__pycache__
*.pyc
*.pyo
*.pyd
.git
.gitignore
.env
venv

13
Dockerfile Normal file
View File

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

Binary file not shown.

8
requirements.txt Normal file
View File

@@ -0,0 +1,8 @@
blinker==1.9.0
click==8.4.2
colorama==0.4.6
Flask==3.1.3
itsdangerous==2.2.0
Jinja2==3.1.6
MarkupSafe==3.0.3
Werkzeug==3.1.8