fix: argument was not being passed

Argument was not being passed, although it is declared. So changed to a
static path in "FROM scratch" part

Error message before the fix:

Step 17/19 : COPY --from=builder
/chhoto-url/target/$target/release/chhoto-url /chhoto-url
COPY failed: stat chhoto-url/target//release/chhoto-url: file does not
exist
This commit is contained in:
Abdürrahim YILMAZ 2024-08-28 03:12:33 +03:00
parent 59f679a1c2
commit 855145d4d7
1 changed files with 2 additions and 1 deletions

View File

@ -22,8 +22,9 @@ 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
RUN cp /chhoto-url/target/$target/release/chhoto-url /chhoto-url/release
FROM scratch FROM scratch
COPY --from=builder /chhoto-url/target/$target/release/chhoto-url /chhoto-url COPY --from=builder /chhoto-url/release /chhoto-url
COPY ./resources /resources COPY ./resources /resources
ENTRYPOINT ["/chhoto-url"] ENTRYPOINT ["/chhoto-url"]