From 8f3abbde8f4bebec338d7fb3679eb95403ed8783 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sat, 4 Jul 2026 19:47:54 -0400 Subject: [PATCH] build: include alembic in image for migration initContainer --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index bc3a58c..b9ef9af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,9 @@ COPY pyproject.toml pyproject.toml COPY src src COPY README.md README.md COPY .env.example .env.example +# Alembic migrations (run via `alembic upgrade head` in a deploy initContainer) +COPY alembic.ini alembic.ini +COPY alembic alembic # Install the package and runtime dependencies. All dependencies ship as # manylinux wheels (pydantic-core, cryptography, etc.), so no build toolchain