Skip to content
Closed
Show file tree
Hide file tree
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 cmd/fluent-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.24.5
ARG GO_VERSION=1.25.1

# Build the manager binary \
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-alpine3.21 as builder
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-watcher/fluentbit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FLUENT_BIT_BASE_VERSION=3.2.4 \
GO_VERSION=1.24.5
GO_VERSION=1.25.1

FROM golang:${GO_VERSION}-alpine3.21 as buildergo
RUN mkdir -p /fluent-bit
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-watcher/fluentbit/Dockerfile.debug
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FLUENT_BIT_BASE_VERSION=3.2.4 \
GO_VERSION=1.24.5
GO_VERSION=1.25.1

FROM golang:${GO_VERSION}-alpine3.21 as buildergo
RUN mkdir -p /fluent-bit
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-watcher/fluentd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG FLUENTD_BASE_VERSION \
GO_VERSION=1.24.5
GO_VERSION=1.25.1

FROM golang:${GO_VERSION} as builder

Expand Down
4 changes: 2 additions & 2 deletions docs/best-practice/forwarding-logs-via-http/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GO_VERSION=1.24.5
ARG GO_VERSION=1.25.1
# Build the manager binary
FROM golang:${GO_VERSION} as builder
FROM golang:${GO_VERSION} AS builder

WORKDIR /
COPY main.go /go/src/main.go
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/fluent/fluent-operator/v3

go 1.24.5
go 1.25.1

require (
github.com/fsnotify/fsnotify v1.9.0
Expand Down
Loading