Skip to content
Merged
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,7 +1,7 @@
ARG GO_VERSION=1.24.5

# Build the manager binary \
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-alpine3.21 as builder
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-alpine3.21 AS builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
2 changes: 1 addition & 1 deletion cmd/fluent-watcher/fluentbit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG FLUENT_BIT_BASE_VERSION=3.2.4 \
GO_VERSION=1.24.5

FROM golang:${GO_VERSION}-alpine3.21 as buildergo
FROM golang:${GO_VERSION}-alpine3.21 AS buildergo
RUN mkdir -p /fluent-bit
RUN mkdir -p /code
COPY . /code/
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,7 +1,7 @@
ARG FLUENT_BIT_BASE_VERSION=3.2.4 \
GO_VERSION=1.24.5

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

FROM golang:${GO_VERSION} as builder
FROM golang:${GO_VERSION} AS builder

RUN mkdir -p /fluentd
RUN mkdir -p /code
Expand Down
2 changes: 1 addition & 1 deletion 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
# 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
Loading