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
5 changes: 1 addition & 4 deletions examples/ebpf-profiler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
FROM ubuntu:24.04 AS builder
FROM golang:1.24.3 AS builder

ENV GO_VERSION=1.24.3
ARG VERSION=009a07f3803c33374eba0715ccae98dbfde7e225

RUN apt-get update && apt-get -y install wget gcc
RUN wget https://go.dev/dl/go$GO_VERSION.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf go$GO_VERSION.linux-amd64.tar.gz
RUN wget https://github.com/open-telemetry/opentelemetry-ebpf-profiler/archive/$VERSION.tar.gz
RUN mkdir /profiler
RUN tar --strip-components=1 -C /profiler -xzf $VERSION.tar.gz
Expand Down
Loading