forked from falcosecurity/libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubuntu2310.Dockerfile
66 lines (61 loc) · 1.37 KB
/
ubuntu2310.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
FROM docker.io/library/ubuntu:23.10
LABEL maintainer="cncf-falco-dev@lists.cncf.io"
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y
RUN apt --fix-broken -y install && apt-get install -y \
build-essential \
libssl-dev \
zlib1g-dev \
libbz2-dev \
libreadline-dev \
libsqlite3-dev \
wget \
curl \
libncurses5-dev \
libncursesw5-dev \
xz-utils \
tk-dev \
libffi-dev \
liblzma-dev \
jq \
golang \
build-essential \
git \
libncurses-dev \
pkg-config \
autoconf \
libtool \
libelf-dev \
libssl-dev \
libc-ares-dev \
libprotobuf-dev \
protobuf-compiler \
libgrpc++-dev \
protobuf-compiler-grpc \
libcurl4-openssl-dev \
libyaml-cpp-dev \
cmake \
rpm \
libelf-dev \
rpm2cpio \
cpio \
sudo \
zstd \
libc6 \
gcc-9 \
gcc-10 \
gcc-11 \
gcc-12 \
llvm-13 \
clang-13 \
gcc-13 \
llvm-14 \
clang-14 \
llvm-15 \
clang-15 \
llvm-16 \
clang-16
RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 90
RUN update-alternatives --install /usr/bin/llvm-strip llvm-strip /usr/bin/llvm-strip-15 90
RUN git clone https://github.com/libbpf/bpftool.git --branch v7.2.0 --single-branch && cd bpftool && git submodule update --init && cd src && make && make install
ENTRYPOINT ["/bin/bash", "-c"]