Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
aldur committed Dec 16, 2024
1 parent 017dad3 commit 743f0c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/dockerfiles/Dockerfile.signer.debian
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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
Expand Down

0 comments on commit 743f0c7

Please sign in to comment.