diff --git a/system-test/Dockerfile.linux b/system-test/Dockerfile.linux index fd7dff2e..7e89c668 100644 --- a/system-test/Dockerfile.linux +++ b/system-test/Dockerfile.linux @@ -1,9 +1,9 @@ -FROM golang:1.17-bullseye as builder +FROM golang:1.21-bullseye as builder RUN apt-get update && apt-get install -y \ git \ && rm -rf /var/lib/apt/lists/* WORKDIR /root/ -RUN go get github.com/google/pprof +RUN go install github.com/google/pprof@latest FROM debian:11 diff --git a/system-test/Dockerfile.node-alpine b/system-test/Dockerfile.node-alpine index 72ad23f8..29a05bb5 100644 --- a/system-test/Dockerfile.node-alpine +++ b/system-test/Dockerfile.node-alpine @@ -1,9 +1,9 @@ ARG NODE_VERSION -FROM golang:1.17-alpine as builder +FROM golang:1.21-alpine as builder RUN apk add --no-cache git WORKDIR /root/ -RUN go get github.com/google/pprof +RUN go install github.com/google/pprof@latest FROM node:${NODE_VERSION}-alpine