From 8555052cc4b613642e30e18f2c06efd81c7bf01d Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Fri, 29 Aug 2025 15:09:22 -0600 Subject: [PATCH] build: Modified the Dockerfile to be able to build the procedural macros as well --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 356c21f..1d88b89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,7 @@ RUN USER=root cargo new --bin managarr-temp WORKDIR /usr/src/managarr-temp COPY Cargo.* . +COPY proc_macros ./proc_macros RUN cargo build --release # remove src from empty project RUN rm -r src