Skip to content
Open
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 docker/perf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ RUN go get -d -v ./...
WORKDIR /go/src/github.com/nudgebee/application-profiler/cmd/agent
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o /go/bin/agent

FROM alpine:3.23.4 AS tools
FROM alpine:3.24.0 AS tools
RUN apk add --no-cache git \
&& git clone https://github.com/brendangregg/FlameGraph

FROM alpine:3.23.4
FROM alpine:3.24.0
RUN apk add --no-cache perf perl procps \
&& mkdir -p /app/FlameGraph
COPY --from=agentbuild /go/bin/agent /app/agent
Expand Down