Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 0203b94

Browse files
author
Eoghan Russell
committed
Fix error
Signed-off-by: Eoghan Russell <[email protected]>
1 parent 65f0cd8 commit 0203b94

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

ci/ovs_test_setup/testpmd_image/Dockerfile

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
FROM ubuntu:22.04@sha256:2b7412e6465c3c7fc5bb21d3e6f1917c167358449fecac8176c6e496e5c1f05f
2-
RUN apt-get -q update && apt-get install -y git vim meson python3-pyelftools libnuma-dev && \
3-
rm -rf /var/lib/apt/lists/*
2+
RUN apt-get -q update \
3+
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
4+
git \
5+
vim \
6+
meson \
7+
python3-pyelftools \
8+
libnuma-dev \
9+
&& rm -rf /var/lib/apt/lists/*
410
RUN git clone https://github.com/DPDK/dpdk.git
511
WORKDIR /dpdk/
612
RUN meson build

docker/testpmd/Dockerfile

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
FROM ubuntu:22.04@sha256:2b7412e6465c3c7fc5bb21d3e6f1917c167358449fecac8176c6e496e5c1f05f
2-
RUN apt-get -q update && apt-get install -y git vim meson python3-pyelftools libnuma-dev && \
3-
rm -rf /var/lib/apt/lists/*
2+
RUN apt-get -q update \
3+
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
4+
git \
5+
vim \
6+
meson \
7+
python3-pyelftools \
8+
libnuma-dev \
9+
&& rm -rf /var/lib/apt/lists/*
410
RUN git clone https://github.com/DPDK/dpdk.git
511
WORKDIR /dpdk/
612
RUN meson build
713
WORKDIR /build/
814
RUN ninja
915
WORKDIR /dpdk/build/app
1016
COPY ./testpmd.sh testpmd.sh
11-
CMD ["./testpmd.sh"]
17+
CMD ["./testpmd.sh"]

0 commit comments

Comments
 (0)