(feat) add Dockerfile

This commit is contained in:
Nicolas Sebastian Schuler
2025-07-16 10:48:46 +02:00
parent 7f1034a22f
commit eaa96ef6ce
2 changed files with 27 additions and 0 deletions

View File

@@ -17,6 +17,17 @@ uv sync
fastapi run app/main.py
```
## Build Docker Image
```bash
docker build -t stack:latest .
```
## Use Docker Image
```bash
docker run -d --name mycontainer -p 80:80 stack:latest
```
## Testing
```bash
source .venv/bin/activate