diff --git a/docker/build-tools/Dockerfile b/docker/build-tools/Dockerfile index c9949158b0..a6f7849de9 100644 --- a/docker/build-tools/Dockerfile +++ b/docker/build-tools/Dockerfile @@ -27,7 +27,7 @@ ################ # Binary tools ################ -ARG GOLANG_IMAGE=golang:1.23.2 +ARG GOLANG_IMAGE=golang:1.23.7 # hadolint ignore=DL3006 FROM ${GOLANG_IMAGE} as binary_tools_context_base # TARGETARCH is an automatic platform ARG enabled by Docker BuildKit. @@ -630,7 +630,7 @@ ENV CARGO_HOME=/home/.cargo 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 &&\ + sh -s -- -y -v --default-toolchain ${RUST_VERSION} --profile minimal --component rustfmt,clippy &&\ /home/.cargo/bin/rustup default ${RUST_VERSION} &&\ /home/.cargo/bin/cargo install rustfilt &&\ mv /home/.cargo/bin/* /usr/bin