From 629cfc1c9225d065ad83948f6f9955440c7a1c1c Mon Sep 17 00:00:00 2001 From: Till Wegmueller Date: Tue, 2 Dec 2025 21:46:47 +0100 Subject: [PATCH] fix: include migration directory in Docker build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 49f06b6..8a94a0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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