-
Notifications
You must be signed in to change notification settings - Fork 13
/
Dockerfile
45 lines (37 loc) · 1.71 KB
/
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
# Copyright (c) 2019-2024 Tigera, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM --platform=amd64 calico/qemu-user-static:latest as qemu
FROM debian:bookworm-slim as bpftool-build
ARG SOURCE_REPO=https://github.com/libbpf/bpftool.git
ARG SOURCE_REF=main
COPY --from=qemu /usr/bin/qemu-*-static /usr/bin
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y --no-install-recommends \
gpg gpg-agent libelf-dev libmnl-dev libc-dev libgcc-12-dev libcap-dev \
bash-completion binutils binutils-dev ca-certificates make git \
xz-utils gcc pkg-config bison flex build-essential clang llvm llvm-dev && \
apt-get purge --auto-remove && \
apt-get clean
WORKDIR /tmp
RUN git clone --recurse-submodules --depth 1 -b $SOURCE_REF $SOURCE_REPO && \
EXTRA_CFLAGS=--static OUTPUT=/usr/bin/ make -C bpftool/src -j "$(nproc)" && \
strip /usr/bin/bpftool && \
ldd /usr/bin/bpftool 2>&1 | grep -q -e "Not a valid dynamic program" \
-e "not a dynamic executable" || \
( echo "Error: bpftool is not statically linked"; false ) && \
rm -rf /tmp/bpftool
FROM scratch
COPY --from=bpftool-build /usr/bin/bpftool /bpftool
LABEL maintainer="[email protected]"