This commit is contained in:
2025-01-25 16:04:32 -03:00
parent 4d583cc238
commit 8add846bb9
3 changed files with 59 additions and 14 deletions

10
docker-compose.yml Normal file
View File

@@ -0,0 +1,10 @@
services:
fastapi-app:
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:8000"
volumes:
- .:/app # Mount the local directory to the container for development
command: uvicorn main:app --host 0.0.0.0 --port 8000 --reload