From 63e7195e1ae342b3d358ace1a2573d0b637fe407 Mon Sep 17 00:00:00 2001 From: Vadym Samoilenko Date: Thu, 26 Mar 2026 12:59:10 +0000 Subject: [PATCH] fix: alembic config path in Dockerfile CMD Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0052e3b..d84c908 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,4 +11,4 @@ RUN pip install --no-cache-dir -r requirements.txt COPY . . # Run migrations then start server -CMD ["sh", "-c", "alembic upgrade head && uvicorn src.main:app --host 0.0.0.0 --port 8800 --workers 1"] +CMD ["sh", "-c", "alembic -c alembic/alembic.ini upgrade head && uvicorn src.main:app --host 0.0.0.0 --port 8800 --workers 1"]