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/bpf/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 builder
FROM alpine:3.24.0 AS builder
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 bash bcc-tools perl procps strace util-linux iproute2 \
&& mkdir -p /app/FlameGraph
COPY --from=builder /FlameGraph /app/FlameGraph
Expand Down