Skip to content

Commit

Permalink
Add locker flag (#1239)
Browse files Browse the repository at this point in the history
- Add locked option in the docker build
  • Loading branch information
fabergat authored Jan 20, 2025
1 parent 55ffd37 commit 32752a3
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
@@ -1,6 +1,6 @@
FROM rust:1.81.0-slim-bookworm AS build

ARG CARGO_BUILD_ARGS="--release"
ARG CARGO_BUILD_ARGS="--release --locked"

# Install dependencies.
RUN apt-get update
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 @@ -3,7 +3,7 @@ FROM rust:1.81.0-slim-bookworm AS build
ARG GIT_COMMIT
RUN test -n "$GIT_COMMIT" || (echo "GIT_COMMIT not set" && false)

ARG CARGO_BUILD_ARGS="--release"
ARG CARGO_BUILD_ARGS="--release --locked"

# Install dependencies.
RUN apt-get update
Expand Down

0 comments on commit 32752a3

Please sign in to comment.