Skip to content

Commit 8f91b6f

Browse files
StuMasonclaude
andcommitted
fix: Include alembic files in Docker image
Add alembic.ini and alembic/ directory to the Docker image so migrations can be run in the container. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d7aee2f commit 8f91b6f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv
1212
WORKDIR /app
1313

1414
# Copy project files
15-
COPY pyproject.toml uv.lock README.md ./
15+
COPY pyproject.toml uv.lock README.md alembic.ini ./
1616
COPY src/ src/
17+
COPY alembic/ alembic/
1718

1819
# Install dependencies
1920
RUN uv sync --frozen --no-dev

0 commit comments

Comments
 (0)