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
4 changes: 2 additions & 2 deletions system-test/Dockerfile.linux
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions system-test/Dockerfile.node-alpine
Original file line number Diff line number Diff line change
@@ -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

Expand Down