Update dockerfile to use UV

Change backend context from . to ./backend in docker-compose.
This is necessary for copying the pyproject.toml and uv.lock files from project root level
This commit is contained in:
Orfeo Terkuci
2026-03-22 15:39:23 +01:00
parent e7f96499b9
commit 1034d95145
2 changed files with 19 additions and 8 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
services:
backend:
build:
context: ./backend
context: .
dockerfile: ./backend/Dockerfile
container_name: shadowbroker-backend
ports:
- "8000:8000"