mirror of
https://github.com/CloudNebulaProject/barycenter.git
synced 2026-04-10 13:10:42 +00:00
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:
parent
8e0107cd33
commit
629cfc1c92
1 changed files with 1 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue