mirror of
https://github.com/minoplhy/chhoto-url.git
synced 2024-11-24 17:56:49 +00:00
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:
parent
59f679a1c2
commit
855145d4d7
@ -22,8 +22,9 @@ COPY ./actix/Cargo.toml ./actix/Cargo.lock ./
|
||||
COPY ./actix/src ./src
|
||||
# Build application
|
||||
RUN cargo build --release --target=$target --locked --bin chhoto-url
|
||||
RUN cp /chhoto-url/target/$target/release/chhoto-url /chhoto-url/release
|
||||
|
||||
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
|
||||
ENTRYPOINT ["/chhoto-url"]
|
||||
|
Loading…
Reference in New Issue
Block a user