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/config-reloader/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS buildbase
FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS buildbase
ARG TARGETOS
ARG TARGETARCH
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion cmd/datasource-syncer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS buildbase
FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS buildbase
ARG TARGETOS
ARG TARGETARCH
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion cmd/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS buildbase
FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS buildbase

# Compile the UI assets.
FROM --platform=$BUILDPLATFORM gcr.io/google-appengine/nodejs AS assets
Expand Down
2 changes: 1 addition & 1 deletion cmd/operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS buildbase
FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS buildbase
ARG TARGETOS
ARG TARGETARCH
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion cmd/rule-evaluator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS buildbase
FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS buildbase
ARG TARGETOS
ARG TARGETARCH
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion examples/instrumentation/go-synthetic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS buildbase
FROM --platform=$BUILDPLATFORM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS buildbase
ARG TARGETOS
ARG TARGETARCH
WORKDIR /app
Expand Down
6 changes: 3 additions & 3 deletions hack/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# deps builds binaries in an isolated environment to avoid
# funkiness in the hermetic build.
FROM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS deps
FROM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS deps
WORKDIR /workspace

RUN go install github.com/bwplotka/[email protected]
Expand All @@ -23,7 +23,7 @@ RUN bingo -v get # TODO(bwplotka): It takes 177s in docker container with colima

# hermetic is a lite copy of the repo resources used in building
# testing in a hermetic, idempotent, and reproducable environment.
FROM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS hermetic
FROM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS hermetic

COPY --from=deps /go/bin /go/bin
ARG RUNCMD='go fmt ./...'
Expand Down Expand Up @@ -67,7 +67,7 @@ COPY --from=hermetic /workspace/charts charts
COPY --from=hermetic /workspace/e2e e2e

## kindtest image for running tests against kind cluster in hermetic environment.
FROM google-go.pkg.dev/golang:1.25.1@sha256:2a5741ae38c60d188ae9144d1b63730b8059d016216e785b9b35acf1ace69bc1 AS buildbase
FROM google-go.pkg.dev/golang:1.25.2@sha256:3d497f24a4bc1a049dc0f8a00a8554860a03f07bf9b3933637f1c7a5338eb969 AS buildbase
FROM docker:28.5-cli AS docker
FROM debian:stable-slim AS kindtest

Expand Down