Skip to content
Open
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
2 changes: 1 addition & 1 deletion telegraf-build/scripts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Golang 1.21 image as the base image
FROM golang:1.21
FROM golang:1.26rc2

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

The updated base image golang:1.26rc2 is a release candidate (rc). Using release candidates in build environments is discouraged as they are not stable and may contain bugs. It's recommended to use the latest stable release to ensure reliability. If Go 1.26 is not yet fully released, golang:1.25 would be the latest stable version.

FROM golang:1.25


# Set the working directory inside the container
WORKDIR /app
Expand Down