From c289b3e5196b06f1ff98d934fe19946a22089f85 Mon Sep 17 00:00:00 2001 From: Enderson Maia Date: Tue, 21 Oct 2025 17:22:41 -0300 Subject: [PATCH 1/2] chore: bump machine-guest-tools to 0.17.2 --- cpp-low-level/Dockerfile | 9 +++------ cpp/Dockerfile | 7 ++----- go/Dockerfile | 7 ++----- java/Dockerfile | 26 +++++++++++++++++--------- javascript/Dockerfile | 7 ++----- lua/Dockerfile | 7 ++----- python/Dockerfile | 7 ++----- ruby/Dockerfile | 7 ++----- rust/Dockerfile | 7 ++----- typescript/Dockerfile | 7 ++----- 10 files changed, 36 insertions(+), 55 deletions(-) diff --git a/cpp-low-level/Dockerfile b/cpp-low-level/Dockerfile index 1a79064..e201cf4 100644 --- a/cpp-low-level/Dockerfile +++ b/cpp-low-level/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker.io/docker/dockerfile:1 -ARG MACHINE_GUEST_TOOLS_VERSION=0.17.1 +ARG MACHINE_GUEST_TOOLS_VERSION=0.17.2 # This enforces that the packages downloaded from the repositories are the same # for the defined date, no matter when the image is built. @@ -41,7 +41,7 @@ ADD https://github.com/cartesi/machine-guest-tools/releases/download/v${MACHINE_ RUN < Date: Tue, 21 Oct 2025 17:33:39 -0300 Subject: [PATCH 2/2] fixup! chore: bump machine-guest-tools to 0.17.2 --- java/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/java/Dockerfile b/java/Dockerfile index 609d810..d619cb7 100644 --- a/java/Dockerfile +++ b/java/Dockerfile @@ -16,16 +16,15 @@ COPY app/src /app/app/src RUN ./gradlew --no-daemon shadowJar - # ################################################################################ # # Runtime stage (Cartesi-compatible: linux/riscv64) - FROM --platform=linux/riscv64 eclipse-temurin:21-jre ARG MACHINE_GUEST_TOOLS_VERSION=0.17.2 ARG DEBIAN_FRONTEND=noninteractive RUN <