From cd762e6a61487560f9b5309de9d8b407c0efb9bb Mon Sep 17 00:00:00 2001 From: lexara-prime-ai Date: Wed, 10 Jul 2024 20:18:51 +0000 Subject: [PATCH] Updated docker config. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7b72920..df2a974 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN cargo install cargo-chef --locked FROM chef AS planner -COPY . . +COPY ./rust . RUN cargo chef prepare --recipe-path recipe.json @@ -16,7 +16,7 @@ COPY --from=planner /render_cdk/recipe.json recipe.json RUN cargo chef cook --release --recipe-path recipe.json -COPY . . +COPY ./rust . RUN cargo build --release