initial commit
Python Code Quality / python-code-quality (push) Successful in 9s
Python Test / python-test (push) Failing after 8s

This commit is contained in:
Brian Bjarke Jensen
2025-11-04 21:03:16 +01:00
parent 763c61a280
commit 54f658d093
12 changed files with 683 additions and 11 deletions
+22
View File
@@ -0,0 +1,22 @@
version: "3.8"
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:8000"
volumes:
# Mount source code for hot-reloading during development
- ./src:/app/src:ro
environment:
- ENVIRONMENT=development
command: ["--host", "0.0.0.0", "--port", "8000", "--reload"]
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 5s