Skip to content

Commit 24d44e5

Browse files
committed
test: fix system test failure due to golang1.21
1 parent c7ff346 commit 24d44e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

system-test/Dockerfile.linux

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM golang:1.21-bullseye as builder
1+
FROM golang:1.22-bullseye as builder
22
RUN apt-get update && apt-get install -y \
33
git \
44
&& rm -rf /var/lib/apt/lists/*
55
WORKDIR /root/
6-
RUN go install github.com/google/pprof@latest
6+
RUN go install github.com/google/pprof@v0.0.0-20240827171923-fa2c70bbbfe5
77

88
FROM debian:11
99

system-test/Dockerfile.node-alpine

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ARG NODE_VERSION
22

3-
FROM golang:1.21-alpine as builder
3+
FROM golang:1.22-alpine as builder
44
RUN apk add --no-cache git
55
WORKDIR /root/
6-
RUN go install github.com/google/pprof@latest
6+
RUN go install github.com/google/pprof@v0.0.0-20240827171923-fa2c70bbbfe5
77

88
FROM node:${NODE_VERSION}-alpine
99

0 commit comments

Comments
 (0)