Trying to build vpp

This commit is contained in:
2026-04-08 21:13:21 +08:00
parent 0c5f490dfc
commit 4eae2621c9
12 changed files with 284 additions and 54 deletions

View File

@@ -4,41 +4,47 @@ ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /build
ARG APT_PROXY
RUN if [ -n "${APT_PROXY}" ]; then \
echo "Acquire::http::Proxy \"http://${APT_PROXY}\";" > /etc/apt/apt.conf.d/01proxy; \
fi
RUN apt-get update && apt-get install -y --no-install-recommends \
bash \
bc \
bison \
build-essential \
cpio \
ca-certificates \
ca-certificates \
curl \
dosfstools \
file \
fdisk \
fdisk \
fuse-overlayfs \
gdisk \
gdisk \
e2fsprogs \
flex \
git \
gettext-base \
jq \
jq \
kmod \
libelf-dev \
libssl-dev \
make \
pahole \
parted \
parted \
perl \
pv \
pv \
python3 \
qemu-user-static \
podman \
skopeo \
qemu-user-static \
podman \
skopeo \
rsync \
tar \
udev \
udev \
xz-utils \
zstd \
zstd \
dwarves \
gcc-aarch64-linux-gnu \
binutils-aarch64-linux-gnu \
@@ -47,4 +53,3 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
u-boot-tools \
device-tree-compiler \
&& rm -rf /var/lib/apt/lists/*