build: Modified the Dockerfile to be able to build the procedural macros as well

This commit is contained in:
2025-08-29 15:09:22 -06:00
parent 80bc6793c7
commit 8555052cc4
+1
View File
@@ -6,6 +6,7 @@ RUN USER=root cargo new --bin managarr-temp
WORKDIR /usr/src/managarr-temp WORKDIR /usr/src/managarr-temp
COPY Cargo.* . COPY Cargo.* .
COPY proc_macros ./proc_macros
RUN cargo build --release RUN cargo build --release
# remove src from empty project # remove src from empty project
RUN rm -r src RUN rm -r src