From aa9f55167d96bad23a3ec0c896bbb7204437c642 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 20 Apr 2025 15:44:01 -0400 Subject: [PATCH] Updated docker file to copy migrations --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a57ae02..64efc71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,7 @@ COPY --from=builder /usr/src/app/target/release/icarus . # 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/migrations . +COPY --from=builder /usr/src/app/migrations ./migrations # Expose the port your Axum app listens on (e.g., 3000 or 8000) EXPOSE 3000