chore: update project dependencies in requirements.txt

This commit is contained in:
2026-04-05 10:26:03 -03:00
parent b73ba1ef10
commit 19c6fe2ad8
3 changed files with 56 additions and 254 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
version: '3.8'
services:
django_app:
image: python:3.12-slim
container_name: rrbec_api
ports:
- "8069:8000"
restart: unless-stopped
environment:
- DEBUG=False
- ALLOWED_HOSTS=*
volumes:
- ./data:/app/data
- ./media:/app/media
working_dir: /app
command: >
sh -c "git clone --branch api https://github.com/welton89/RRBEC.git . &&
pip install -r requirements.txt &&
python gestaoRaul/manage.py migrate --noinput &&
gunicorn gestaoRaul.wsgi:application --bind 0.0.0.0:8000"