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/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# Compile the UI assets.
FROM --platform=$BUILDPLATFORM docker.io/node:23.11.0-bookworm@sha256:a9de312c8f40add3e897b9987e5d62eafcd39de785fe67dc3e70c4d2128153ec AS assets
FROM --platform=$BUILDPLATFORM docker.io/node:26.5.0-bookworm@sha256:219fc9da91e7f29a9f32290ff598cdf8886fd68f421ff515c8f93434da39a271 AS assets
WORKDIR /app
COPY --from=google-go.pkg.dev/golang:1.26.5@sha256:5075e8b0e1a7913c2274737c1a8b379ea264322c082bd21d3911d196dce46559 /usr/local/go /usr/local/
ENV PATH="/usr/local/go/bin:${PATH}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
containers:
- name: go-synthetic
# TODO(bwplotka): Rename image to go-synthetic (example-app is misleading, we actually use go-synthetic).
image: gke.gcr.io/prometheus-engine/example-app:v0.15.0-gke.8
image: gke.gcr.io/prometheus-engine/example-app:v0.17.0-gke.8
args:
- "--listen-address=:8080"
- "--cpu-burn-ops=75"
Expand Down
2 changes: 1 addition & 1 deletion examples/instrumentation/go-synthetic/go-synthetic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
containers:
- name: go-synthetic
# TODO(bwplotka): Rename image to go-synthetic (example-app is misleading, we actually use go-synthetic).
image: gke.gcr.io/prometheus-engine/example-app:v0.15.0-gke.8
image: gke.gcr.io/prometheus-engine/example-app:v0.17.0-gke.8
args:
- "--listen-address=:8080"
- "--cpu-burn-ops=75"
Expand Down
8 changes: 4 additions & 4 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.26.4@sha256:3444149d0a7e3f7cfb9c2db65f0f75676fe6ad04de3ce72674efb120c08dd1c1 AS deps
FROM google-go.pkg.dev/golang:1.26.5@sha256:5075e8b0e1a7913c2274737c1a8b379ea264322c082bd21d3911d196dce46559 AS deps
WORKDIR /workspace
# Have to clone and install this as the go.mod uses replace directives.
# RUN git clone --depth 1 --branch v0.53.1 https://github.com/prometheus-operator/prometheus-operator \
Expand All @@ -30,7 +30,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.26.4@sha256:3444149d0a7e3f7cfb9c2db65f0f75676fe6ad04de3ce72674efb120c08dd1c1 AS hermetic
FROM google-go.pkg.dev/golang:1.26.5@sha256:5075e8b0e1a7913c2274737c1a8b379ea264322c082bd21d3911d196dce46559 AS hermetic

COPY --from=deps /go/bin /go/bin
ARG RUNCMD='go fmt ./...'
Expand Down Expand Up @@ -75,8 +75,8 @@ COPY --from=hermetic /workspace/e2e e2e
COPY --from=hermetic /workspace/vendor vendor.tmp

## kindtest image for running tests against kind cluster in hermetic environment.
FROM google-go.pkg.dev/golang:1.26.4@sha256:3444149d0a7e3f7cfb9c2db65f0f75676fe6ad04de3ce72674efb120c08dd1c1 AS buildbase
FROM docker:28.0-cli AS docker
FROM google-go.pkg.dev/golang:1.26.5@sha256:5075e8b0e1a7913c2274737c1a8b379ea264322c082bd21d3911d196dce46559 AS buildbase
FROM docker:29.6-cli AS docker
FROM debian:stable-slim AS kindtest

WORKDIR /build
Expand Down
Loading