v0.9.0 - Creating Docker

This commit is contained in:
Javier
2026-01-24 18:19:37 -06:00
parent 1a5168d155
commit 360d440217
3 changed files with 21 additions and 2 deletions

6
.dockerignore Normal file
View File

@@ -0,0 +1,6 @@
__pycache__
*.pyc
venv
.git
*.db
```

13
Dockerfile Normal file
View File

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

View File

@@ -1,2 +1,2 @@
Flask==3.0.0
Werkzeug==3.0.1
Flask==3.1.2
Werkzeug==3.1.5