diff --git a/Dockerfile b/Dockerfile index 00ab5b9..18d9fa7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,15 +35,15 @@ COPY src ./src # If you have other directories like `templates` or `static`, copy them too # COPY templates ./templates # COPY static ./static +COPY .env ./.env +COPY migrations ./migrations # << --- SSH MOUNT ADDED HERE --- >> # Build *only* dependencies to leverage Docker cache # This dummy build caches dependencies as a separate layer # Mount the SSH agent socket for this command -RUN --mount=type=ssh mkdir src && \ - echo "fn main() {println!(\"if you see this, the build broke\")}" > src/main.rs && \ - cargo build --release --quiet && \ - rm -rf src target/release/deps/icarus_auth* # Clean up dummy build artifacts +RUN --mount=type=ssh \ + cargo build --release --quiet # Stage 2: Create the final, smaller runtime image # Use a minimal base image like debian-slim or even distroless for security/size @@ -61,7 +61,8 @@ COPY --from=builder /usr/src/app/target/release/icarus_auth . # Copy other necessary files like .env (if used for runtime config) or static assets # It's generally better to configure via environment variables in Docker though -# COPY --from=builder /usr/src/app/.env . +COPY --from=builder /usr/src/app/.env . +COPY --from=builder /usr/src/app/migrations ./migrations # COPY --from=builder /usr/src/app/templates ./templates # COPY --from=builder /usr/src/app/static ./static