fix: include migration directory in Docker build

Add COPY instruction for migration directory to Dockerfile to fix
build failure. The migration crate is a path dependency required
by the main barycenter package.

Fixes Docker build error:
  error: failed to get `migration` as a dependency of package `barycenter`

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Till Wegmueller 2025-12-02 21:46:47 +01:00
parent 8e0107cd33
commit 629cfc1c92
No known key found for this signature in database

View file

@ -9,6 +9,7 @@ COPY Cargo.toml Cargo.lock ./
# Copy source code
COPY src ./src
COPY migration ./migration
# Build release binary with platform-specific caches to avoid race conditions
ARG TARGETPLATFORM