chore: bump machine-guest-tools to 0.17.2#75
Merged
endersonmaia merged 2 commits intoprerelease/sdk-12from Oct 22, 2025
Merged
Conversation
tuler
approved these changes
Oct 22, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the installation of
machine-guest-toolsacross all language-specific Dockerfiles to use version 0.17.2. It also updates the expected SHA512 checksum for the downloaded.debpackage and removes a workaround related to non-determinism in the installation process. The changes ensure consistency and security when building images.Dependency Version Updates:
Updated the
MACHINE_GUEST_TOOLS_VERSIONargument from previous versions (mostly 0.17.1, 0.17.0 for Java) to0.17.2in all Dockerfiles (cpp-low-level/Dockerfile,cpp/Dockerfile,go/Dockerfile,java/Dockerfile,javascript/Dockerfile,lua/Dockerfile,python/Dockerfile,ruby/Dockerfile,rust/Dockerfile,typescript/Dockerfile). [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Updated the SHA512 checksum to match the new version of
machine-guest-tools_riscv64.debin all relevant installation steps. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]Build Process Simplification:
/etc/shadowto/etc/shadow-after installingmachine-guest-toolsto address non-determinism. This was removed from all Dockerfiles exceptcpp-low-level/Dockerfile(where it was already not present), simplifying the build process. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Consistency and Security Improvements:
machine-guest-toolspackage, including the use ofbusybox wgetand checksum verification. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11]Platform-specific Adjustments:
java/Dockerfile, switched to a multi-lineRUN <<EOF ... EOFblock for installation to match the approach used in other Dockerfiles, improving maintainability and consistency.Cleanup and Optimization:
rm -rf /var/lib/apt/lists/* /var/log/* /var/cache/*) after installation to keep images small and free of unnecessary files. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]