diff --git a/Dockerfile b/Dockerfile index b04f42a..a4bdc1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM lukemathwalker/cargo-chef:latest-rust-slim AS chef WORKDIR /chhoto-url FROM chef as planner -COPY ./actix/Cargo.toml ./actix/Cargo.lock . +COPY ./actix/Cargo.toml ./actix/Cargo.lock ./ COPY ./actix/src ./src RUN cargo chef prepare --recipe-path recipe.json @@ -18,7 +18,7 @@ COPY --from=planner /chhoto-url/recipe.json recipe.json # Build dependencies - this is the caching Docker layer RUN cargo chef cook --release --target=$target --recipe-path recipe.json -COPY ./actix/Cargo.toml ./actix/Cargo.lock . +COPY ./actix/Cargo.toml ./actix/Cargo.lock ./ COPY ./actix/src ./src # Build application RUN cargo build --release --target=$target --locked --bin chhoto-url