File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -44,13 +44,17 @@ RUN wget ${SGX_SDK_URL} \
4444 && echo "yes" | ./$SGX_SDK_INSTALLER \
4545 && rm $SGX_SDK_INSTALLER
4646
47- RUN git clone -b $DCAP_VERSION https://github.com/intel/SGXDataCenterAttestationPrimitives.git
48-
4947RUN cd sgxsdk/SampleCode/SampleEnclave \
5048 && . /opt/intel/sgxsdk/environment \
5149 && make \
5250 && cd -
5351
52+ ARG DCAP_TARBALL_SHA256="ed96f583581be108f9370d7e97577664a704914a98f27a7e117a650651c13e56"
53+
54+ RUN wget -q https://github.com/intel/SGXDataCenterAttestationPrimitives/archive/$DCAP_VERSION.tar.gz && \
55+ echo "$DCAP_TARBALL_SHA256 $DCAP_VERSION.tar.gz" | sha256sum -c - && \
56+ tar xzf $DCAP_VERSION.tar.gz && mv SGXDataCenterAttestationPrimitives* SGXDataCenterAttestationPrimitives
57+
5458RUN cd SGXDataCenterAttestationPrimitives/SampleCode/QuoteGenerationSample \
5559 && . /opt/intel/sgxsdk/environment \
5660 && make \
You can’t perform that action at this time.
0 commit comments