diff --git a/docker/bpf/Dockerfile b/docker/bpf/Dockerfile index be942af..8e9d0e2 100644 --- a/docker/bpf/Dockerfile +++ b/docker/bpf/Dockerfile @@ -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 builder +FROM alpine:3.24.1 AS builder RUN apk add --no-cache git \ && git clone https://github.com/brendangregg/FlameGraph -FROM alpine:3.23.4 +FROM alpine:3.24.1 # apk upgrade pulls the latest 3.23 patch level for the base + dependency # packages (libssl3/libcrypto3 3.5.6-r0 -> 3.5.7-r0, libexpat, libxml2), which # the pinned alpine:3.23.4 snapshot otherwise ships stale.