From 3292d3552149368eeed62dab65cf3ae3f3362569 Mon Sep 17 00:00:00 2001 From: Ryan Walters Date: Mon, 3 Nov 2025 12:07:27 -0600 Subject: [PATCH] build(docker): copy migrations directory to build context Ensures database migration files are available during the Docker build process. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 4e2d321..bb1284e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -59,6 +59,7 @@ RUN cargo build --release # Copy source code RUN rm src/*.rs COPY ./src ./src/ +COPY ./migrations ./migrations/ # Copy built frontend assets COPY --from=frontend-builder /app/dist ./web/dist