Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### Fixed

- cherry-pick: Add `--locked` flag to `cargo install` commands for reproducible builds ([#1044]).

[#1044]: https://github.com/stackabletech/docker-images/pull/1044

## [24.3.0] - 2024-03-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion ubi8-rust-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ WORKDIR /
# property in operator-templating/repositories.yaml
# hadolint ignore=SC1091
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.76.0 \
&& . "$HOME/.cargo/env" && cargo install [email protected] [email protected]
&& . "$HOME/.cargo/env" && cargo install --locked [email protected] [email protected]

# Build artifacts will be available in /app.
RUN mkdir /app
Expand Down