11 lines
256 B
YAML
11 lines
256 B
YAML
services:
|
|
web:
|
|
image: python:3.11-slim
|
|
working_dir: /app
|
|
command: sh -c "pip install -r requirements.txt && uvicorn webapp:app --host 0.0.0.0 --port 8000"
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- .:/app
|
|
restart: unless-stopped
|