mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-16 04:04:58 +00:00
The ebpf packages were somewhat neglected during the restructuring of the the repository and currently do not build. They were also a little awkward to use. So move them to ./projects for now until it matures. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
45 lines
1.1 KiB
Docker
45 lines
1.1 KiB
Docker
FROM alpine:3.5
|
|
RUN apk update && apk upgrade -a && \
|
|
apk add --no-cache \
|
|
argp-standalone \
|
|
autoconf \
|
|
automake \
|
|
bison \
|
|
build-base \
|
|
clang \
|
|
clang-dev \
|
|
cmake \
|
|
curl \
|
|
flex-dev \
|
|
fts-dev \
|
|
gettext-dev \
|
|
git \
|
|
iperf \
|
|
libedit-dev \
|
|
libtool \
|
|
llvm \
|
|
llvm-dev \
|
|
llvm-static \
|
|
luajit-dev \
|
|
m4 \
|
|
python \
|
|
zlib-dev \
|
|
&& true
|
|
WORKDIR /build
|
|
COPY . ./
|
|
COPY Dockerfile /
|
|
COPY error.h /usr/include/
|
|
COPY cdefs.h /usr/include/sys/
|
|
ENV ELFUTILS_VERSION=0.165
|
|
RUN curl -sSL -O https://fedorahosted.org/releases/e/l/elfutils/0.165/elfutils-$ELFUTILS_VERSION.tar.bz2
|
|
RUN cat elfutils-$ELFUTILS_VERSION.tar.bz2 | tar xjf - && \
|
|
cd elfutils-$ELFUTILS_VERSION && \
|
|
patch -p1 < ../100-musl-compat.patch && \
|
|
patch -p0 < ../decl.patch && \
|
|
patch -p0 < ../intl.patch
|
|
ENV BCC_COMMIT=d4fc95d92ec9bace9bd607dfd1833e9e06457486
|
|
RUN git clone https://github.com/iovisor/bcc.git && cd bcc && git checkout $BCC_COMMIT
|
|
RUN cd bcc && patch -p0 < ../bcc-gnuism.patch
|
|
ENV LJSYSCALL_COMMIT=0b266e8f4f751ae894299d24a2d40d16c6cf856f
|
|
RUN git clone https://github.com/justincormack/ljsyscall.git && cd ljsyscall && git checkout $LJSYSCALL_COMMIT
|