From 491454a369427ea91d127f5fde63139ef20e22a1 Mon Sep 17 00:00:00 2001 From: Ole Valente Date: Fri, 10 Jul 2026 23:06:09 +0200 Subject: [PATCH] Add celery/redis deps to API container (needed for task dispatch) --- Dockerfile.api | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile.api b/Dockerfile.api index 16c1fb1..045b89b 100644 --- a/Dockerfile.api +++ b/Dockerfile.api @@ -11,7 +11,8 @@ RUN pip install --no-cache-dir \ sqlalchemy[asyncio] aiosqlite \ pydantic pydantic-settings \ python-multipart aiofiles \ - httptools + httptools \ + celery[redis] redis COPY backend/ .