Skip to content

Commit 3799719

Browse files
authored
fix: Update node in update_examples.Dockerfile (#4638)
Fixes `Update Examples Cron` action
1 parent 5c90a06 commit 3799719

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile.examples

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ GITHUB_REPOSITORY ?= grafana/pyroscope
22

33
.PHONY: tools/update_examples
44
tools/update_examples:
5-
docker buildx build --platform $(IMAGE_PLATFORM) -t update_pyroscope_examples -f tools/update_examples.Dockerfile tools
6-
docker run --rm --platform=$(IMAGE_PLATFORM) -e GITHUB_TOKEN=$(GITHUB_TOKEN) -v$(shell pwd):/pyroscope -w /pyroscope update_pyroscope_examples bash -l -c "go run tools/update_examples.go"
5+
docker buildx build --platform linux/amd64 -t update_pyroscope_examples -f tools/update_examples.Dockerfile tools
6+
docker run --rm --platform=linux/amd64 -e GITHUB_TOKEN=$(GITHUB_TOKEN) -v$(shell pwd):/pyroscope -w /pyroscope update_pyroscope_examples bash -l -c "go run tools/update_examples.go"
77

88
.PHONY: tools/update_examples_pr
99
tools/update_examples_pr:

tools/update_examples.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
ARG NODE_VERSION=node:18
2+
ARG NODE_VERSION=node:25
33

44
FROM ${NODE_VERSION} AS node
55

0 commit comments

Comments
 (0)