Skip to content

Instantly share code, notes, and snippets.

View latonis's full-sized avatar
🦡

Jacob Latonis latonis

🦡
View GitHub Profile
@latonis
latonis / Dockerfile
Created October 18, 2022 03:14 — forked from andreybleme/Dockerfile
Minimal Dockerfile container for running BPF programs using libbpf
FROM ubuntu:latest
RUN apt-get update && \
apt-get install -y build-essential git cmake \
zlib1g-dev libevent-dev \
libelf-dev llvm \
clang libc6-dev-i386
RUN mkdir /src && \
git init