From 17de4426bf75a16431e2acb7ef9abb2863d9044b Mon Sep 17 00:00:00 2001 From: Mikko Ylinen Date: Wed, 2 Sep 2020 09:20:25 +0300 Subject: [PATCH] demo: fix openssl-qat-engine build ipp-crypto repository did not provide a tag with the necessary changes included until recently so we were using the master branch. Now the tag was added (and master broke our build) so we move to use it. backported master/02fb1209d0550f8312f64d8cae4250bba7a26303 Signed-off-by: Mikko Ylinen --- demo/openssl-qat-engine/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/demo/openssl-qat-engine/Dockerfile b/demo/openssl-qat-engine/Dockerfile index be0618aa..e374f5dc 100644 --- a/demo/openssl-qat-engine/Dockerfile +++ b/demo/openssl-qat-engine/Dockerfile @@ -5,10 +5,11 @@ FROM clearlinux:base as builder ARG QAT_DRIVER_RELEASE="qat1.7.l.4.9.0-00008" ARG QAT_ENGINE_VERSION="v0.5.44" ARG QAT_ENGINE_FLAGS="--disable-multibuff-offload" +ARG IPP_CRYPTO_VERSION="ippcp_2020u2" RUN swupd bundle-add --skip-diskspace-check devpkg-systemd devpkg-openssl c-basic wget git && \ git clone -b $QAT_ENGINE_VERSION https://github.com/intel/QAT_Engine && \ - git clone https://github.com/intel/ipp-crypto && \ + git clone -b $IPP_CRYPTO_VERSION https://github.com/intel/ipp-crypto && \ wget https://01.org/sites/default/files/downloads/$QAT_DRIVER_RELEASE.tar.gz && \ tar xf *.tar.gz