Add docker files and update requirements

This commit is contained in:
Santiago Lo Coco 2024-10-20 16:47:58 +02:00
parent 2a664df30c
commit cbca79a5e9
3 changed files with 24 additions and 1 deletions

13
Dockerfile Normal file
View File

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

9
docker-compose.yml Normal file
View File

@ -0,0 +1,9 @@
services:
flask-api:
build: .
ports:
- 5000:5000
environment:
FLASK_ENV: production
volumes:
- ./instance:/app/instance

View File

@ -2,4 +2,5 @@ Flask==3.0.3
waitress==3.0.0
python-dotenv==1.0.1
SQLAlchemy==2.0.36
Flask-SQLAlchemy==3.1.1
Flask-SQLAlchemy==3.1.1
Gunicorn==23.0.0