mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-21 16:56:46 +00: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:
parent
5213a9df2e
commit
59f679a1c2
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user