Skip to content
Merged
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
10 changes: 8 additions & 2 deletions docker/bpf/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.26.3-alpine AS agentbuild
FROM golang:1.26.4-alpine AS agentbuild
WORKDIR /go/src/github.com/nudgebee/application-profiler
COPY . /go/src/github.com/nudgebee/application-profiler
RUN go get -d -v ./...
Expand All @@ -10,7 +10,13 @@ RUN apk add --no-cache git \
&& git clone https://github.com/brendangregg/FlameGraph

FROM alpine:3.23.4
RUN apk add --no-cache bash bcc-tools perl procps strace util-linux iproute2 \
# 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.
RUN apk update \
&& apk upgrade \
&& apk add bash bcc-tools perl procps strace util-linux iproute2 \
&& rm -rf /var/cache/apk/* \
&& mkdir -p /app/FlameGraph
COPY --from=builder /FlameGraph /app/FlameGraph
COPY --from=agentbuild /go/bin/agent /app
Expand Down