Skip to content

Commit

Permalink
fix: use mediator lock file
Browse files Browse the repository at this point in the history
some dependencies have increased minimum supported rust version (msrv). This causes breakage as we use an earlier 1.79

Use the lockfile to use versions of dependencies known to work.

Signed-off-by: Naian <[email protected]>
  • Loading branch information
nain-F49FF806 committed Dec 25, 2024
1 parent 0b541a0 commit e90acd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aries/agents/mediator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN ls -lahF
RUN --mount=type=cache,target=./target \
--mount=type=cache,target=${CARGO_HOME}/git \
--mount=type=cache,target=${CARGO_HOME}/registry \
cargo install --no-default-features --path=./aries/agents/mediator/ --bin mediator
cargo install --no-default-features --path=./aries/agents/mediator/ --bin mediator --locked

FROM debian:bookworm-slim as mediator
RUN apt update && apt install -y libsodium23 libzmq5 && rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit e90acd2

Please sign in to comment.