This is an automated email from the ASF dual-hosted git repository.
cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/training.git
The following commit(s) were added to refs/heads/develop by this push:
new 70bfb6c fix: Update rust to the latest stable version to make the
Dockerfile build again.
70bfb6c is described below
commit 70bfb6c1c9b1a0302230fe4611dcabcc8846102a
Author: Christofer Dutz <[email protected]>
AuthorDate: Tue Aug 26 19:46:25 2025 +0200
fix: Update rust to the latest stable version to make the Dockerfile build
again.
---
Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Dockerfile b/Dockerfile
index dd577a7..6c75f76 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -24,8 +24,8 @@ FROM azul/zulu-openjdk:21 as build
RUN apt update -y
RUN apt install -y git graphviz wget bzip2 python3 python3-pip imagemagick
curl protobuf-compiler mc
-# Install the version 1.76.0 of the Rust toolchain
-RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
--default-toolchain=1.88.0
+# Install the version 1.89.0 of the Rust toolchain
+RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
--default-toolchain=1.89.0
ENV PATH="/root/.cargo/bin:$PATH"
# Install svgbob
RUN cargo install svgbob_cli