Skip to content

Commit

Permalink
Fix buildah build errors in github
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 95009ad commit a8e4891
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions demo/crypto-perf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,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 wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
RUN umask 0000 && wget -q https://fast.dpdk.org/rel/$DPDK_TARBALL \
&& echo "$DPDK_TARBALL_SHA256 $DPDK_TARBALL" | sha256sum -c - \
&& tar -xf $DPDK_TARBALL && rm $DPDK_TARBALL
&& tar -xf $DPDK_TARBALL --no-same-permissions --no-same-owner && rm $DPDK_TARBALL

ARG SOVERSION=24
RUN cd dpdk-* && meson setup \
Expand Down
2 changes: 1 addition & 1 deletion demo/opae-nlb-demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN mkdir -p /usr/src/opae && \
cd /usr/src/opae && \
curl -fsSL https://github.com/OFS/opae-sdk/archive/${OPAE_RELEASE}.tar.gz -o opae.tar.gz && \
echo "$OPAE_SHA256 opae.tar.gz" | sha256sum -c - && \
tar -xzf opae.tar.gz && \
umask 0000 && tar -xzf opae.tar.gz --no-same-permissions --no-same-owner && \
rm -f opae.tar.gz

# Build OPAE
Expand Down

0 comments on commit a8e4891

Please sign in to comment.