Add a docker compose

This commit is contained in:
Jacob Windsor 2025-02-19 11:28:05 +01:00
parent c702d99d26
commit 8629268111

View File

@ -0,0 +1,11 @@
version: '3.8'
services:
web:
build: .
ports:
- "8000:8000"
environment:
- ENV=production
command: ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]