Skip to content

Commit

Permalink
silly fix, maybe
Browse files Browse the repository at this point in the history
Signed-off-by: Tuomas Katila <tuomas.katila@intel.com>
  • Loading branch information
tkatila committed Jul 17, 2024
1 parent 6145574 commit d7379aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/crypto-perf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends wget build-esse
ARG DPDK_TARBALL=dpdk-24.03.tar.xz
ARG DPDK_TARBALL_SHA256="33ed973b3945af4f5923096ddca250b401dc80be3b5c6393b4e4fe43a1a6c2ad"

RUN pwd && wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
RUN pwd && umask -S && umask 0000 && umask -S && wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
&& echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \
&& tar -xpf $DPDK_TARBALL -C /dpdk-build && rm $DPDK_TARBALL
&& tar --no-same-permissions -xpf $DPDK_TARBALL -C /dpdk-build && rm $DPDK_TARBALL

ARG SOVERSION=24
RUN cd dpdk-* && meson setup \
Expand Down

0 comments on commit d7379aa

Please sign in to comment.