1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00

fix: copy destination path

Error message before the fix:

Step 4/19 : COPY ./actix/Cargo.toml ./actix/Cargo.lock .

When using COPY with more than one source file, the destination must be
a directory and end with a /
This commit is contained in:
Abdürrahim YILMAZ 2024-08-28 03:04:37 +03:00
parent 5213a9df2e
commit 59f679a1c2

View file

@ -5,7 +5,7 @@ FROM lukemathwalker/cargo-chef:latest-rust-slim AS chef
WORKDIR /chhoto-url WORKDIR /chhoto-url
FROM chef as planner FROM chef as planner
COPY ./actix/Cargo.toml ./actix/Cargo.lock . COPY ./actix/Cargo.toml ./actix/Cargo.lock ./
COPY ./actix/src ./src COPY ./actix/src ./src
RUN cargo chef prepare --recipe-path recipe.json 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 # Build dependencies - this is the caching Docker layer
RUN cargo chef cook --release --target=$target --recipe-path recipe.json 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 COPY ./actix/src ./src
# Build application # Build application
RUN cargo build --release --target=$target --locked --bin chhoto-url RUN cargo build --release --target=$target --locked --bin chhoto-url