Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docker/build-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
################
# Binary tools
################
ARG GOLANG_IMAGE=golang:1.23.7
ARG GOLANG_IMAGE=golang:1.23.8
# hadolint ignore=DL3006
FROM ${GOLANG_IMAGE} AS binary_tools_context_base
# TARGETARCH is an automatic platform ARG enabled by Docker BuildKit.
Expand Down Expand Up @@ -643,7 +643,7 @@ ENV RUSTUP_HOME=/home/.rustup
# hadolint ignore=DL4006
RUN curl --proto '=https' -v --tlsv1.2 -sSf https://sh.rustup.rs | \
sh -s -- -y -v --default-toolchain ${RUST_VERSION} --profile minimal \
--component rustfmt clippy --component llvm-tools &&\
--component rustfmt --component clippy --component llvm-tools &&\
Copy link
Member

@mikemorris mikemorris Apr 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this the fix we want (to mirror the change on master in #3157) and if so is it worth updating release-1.24 which was fixed differently in 7d1c19c for consistency?

Refs context in #3160 (comment)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we need to touch release 1.24. this fails without so I mirrored master.

/home/.cargo/bin/rustup default ${RUST_VERSION} &&\
/home/.cargo/bin/cargo install rustfilt &&\
mv /home/.cargo/bin/* /usr/bin
Expand Down