File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ WORKDIR $DIR
5
5
6
6
RUN echo "deb-src http://deb.debian.org/debian unstable main" >> \
7
7
/etc/apt/sources.list.d/deb-src.list
8
- RUN apt-get update && apt-get install -y wget build-essential meson python3-pyelftools libnuma-dev python3-pip libssl-dev pkg-config dpkg-dev
8
+ RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip libssl-dev pkg-config dpkg-dev
9
9
10
10
# Download & unpack DPDK tarball
11
11
ARG DPDK_TARBALL=dpdk-22.11.tar.xz
@@ -38,7 +38,7 @@ RUN mkdir -p /install_root/licenses/dpdk && \
38
38
apt-get source --download-only -y libatomic1 libnuma1
39
39
40
40
FROM debian:sid-slim
41
- RUN apt-get update && apt-get install -y libssl3 libnuma1 libatomic1 && ldconfig -v
41
+ RUN apt-get update && apt-get install -y --no-install-recommends libssl3 libnuma1 libatomic1 && ldconfig -v
42
42
COPY --from=builder /install_root /
43
43
COPY run-dpdk-test /usr/bin/
44
44
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM ubuntu:20.04 as builder
3
3
ARG DIR=/dpdk-build
4
4
WORKDIR $DIR
5
5
6
- RUN apt-get update && apt-get install -y wget build-essential meson python3-pyelftools libnuma-dev python3-pip
6
+ RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip
7
7
8
8
# Download & unpack DLB tarball
9
9
ARG DLB_TARBALL="dlb_linux_src_release8.0.0.txz"
@@ -25,7 +25,7 @@ RUN cd dpdk-* && patch -Np1 < $(echo ../dlb/dpdk/dpdk_dlb_*.patch) && sed -i 's/
25
25
RUN cd dpdk-* && ninja -C builddir install && install -D builddir/app/dpdk-test-eventdev /install_root/usr/bin/dpdk-test-eventdev
26
26
27
27
FROM ubuntu:20.04
28
- RUN apt-get update && apt-get install -y libnuma1 libatomic1
28
+ RUN apt-get update && apt-get install -y --no-install-recommends libnuma1 libatomic1
29
29
COPY --from=builder /install_root /
30
30
COPY test.sh /usr/bin/
31
31
You can’t perform that action at this time.
0 commit comments