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

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"]
```