From 1bf49c15d3de7451b674c399cbfbce108860286c Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 10 Feb 2026 00:21:00 +0000 Subject: [PATCH] fix: point alembic to shared_lib/alembic.ini in entrypoint Co-Authored-By: Claude Opus 4.6 --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 54265f5..5f58356 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -13,7 +13,7 @@ fi # Run DB migrations only if RUN_MIGRATIONS=true (blog service only) if [[ "${RUN_MIGRATIONS:-}" == "true" ]]; then echo "Running Alembic migrations..." - alembic upgrade head + alembic -c shared_lib/alembic.ini upgrade head fi # Clear Redis page cache on deploy