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

Commit d8bb89f

Browse files
author
Eoghan Russell
committed
Fix error
Signed-off-by: Eoghan Russell <[email protected]>
1 parent 9078843 commit d8bb89f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: ci/ovs_test_setup/testpmd_image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get -q update \
99
python3-pip \
1010
ninja-build \
1111
build-essential \
12-
&& pip3 install --upgrade meson==1.3.0 \
12+
&& pip3 install --no-cache-dir --upgrade meson==1.3.0 \
1313
&& rm -rf /var/lib/apt/lists/*
1414
RUN apt-get update -y \
1515
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates \

Diff for: docker/testpmd/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get -q update \
99
python3-pip \
1010
ninja-build \
1111
build-essential \
12-
&& pip3 install --upgrade meson==1.3.0 \
12+
&& pip3 install --no-cache-dir --upgrade meson==1.3.0 \
1313
&& rm -rf /var/lib/apt/lists/*
1414
RUN apt-get update -y \
1515
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends ca-certificates \

Diff for: docker/userspacecni/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
33
COPY . /root/userspace-cni-network-plugin
44
WORKDIR /root/userspace-cni-network-plugin
55
RUN apt-get update -y \
6-
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y binutils wget make git \
6+
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y binutils bash wget make git \
77
&& wget -qO- https://golang.org/dl/go1.20.1.linux-amd64.tar.gz | tar -C /usr/local -xz \
88
&& rm -rf /var/lib/apt/lists/*
99
ENV PATH="${PATH}:/usr/local/go/bin"

0 commit comments

Comments
 (0)