From e1340fc068d05cb4e4b4d00790578e611e254aff Mon Sep 17 00:00:00 2001 From: Adriano Di Luzio Date: Mon, 16 Dec 2024 14:59:50 +0100 Subject: [PATCH] Fix path --- .github/actions/dockerfiles/Dockerfile.blocklist-client.debian | 2 +- .github/actions/dockerfiles/Dockerfile.signer.debian | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/dockerfiles/Dockerfile.blocklist-client.debian b/.github/actions/dockerfiles/Dockerfile.blocklist-client.debian index e2c7f6573..ddf2f09ec 100644 --- a/.github/actions/dockerfiles/Dockerfile.blocklist-client.debian +++ b/.github/actions/dockerfiles/Dockerfile.blocklist-client.debian @@ -26,7 +26,7 @@ RUN cargo build --bin blocklist-client ${CARGO_BUILD_ARGS} # Create Docker image to run the signer. FROM debian:bookworm-slim AS blocklist-client -COPY --from=build /code/sbtc/target/debug/blocklist-client /usr/local/bin/blocklist-client +COPY --from=build /code/sbtc/target/release/blocklist-client /usr/local/bin/blocklist-client # ca-certificates is required to establish TLS connections. # gettext provides envsubst diff --git a/.github/actions/dockerfiles/Dockerfile.signer.debian b/.github/actions/dockerfiles/Dockerfile.signer.debian index b3ebe84ca..cc7918336 100644 --- a/.github/actions/dockerfiles/Dockerfile.signer.debian +++ b/.github/actions/dockerfiles/Dockerfile.signer.debian @@ -29,7 +29,7 @@ RUN cargo build --bin signer ${CARGO_BUILD_ARGS} # Create Docker image to run the signer. FROM debian:bookworm-slim AS signer -COPY --from=build /code/sbtc/target/debug/signer /usr/local/bin/signer +COPY --from=build /code/sbtc/target/release/signer /usr/local/bin/signer # ca-certificates is required to establish TLS connections. # gettext provides envsubst