Skip to content

Commit

Permalink
Update integration-tests image
Browse files Browse the repository at this point in the history
  • Loading branch information
iKapitonau committed Dec 16, 2024
1 parent 02dfea0 commit 9e544cd
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions deployment/dockerfiles/tests/integration-tests.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,31 @@ COPY deployment/ci/query-load-test query-load-test

WORKDIR query-load-test

RUN curl -fsSL https://download.01.org/intel-sgx/sgx_repo/ubuntu/intel-sgx-deb.key | apt-key add -
RUN . /etc/os-release; VERSION_CODENAME=${VERSION_CODENAME}
RUN add-apt-repository "deb https://download.01.org/intel-sgx/sgx_repo/ubuntu $VERSION_CODENAME main"
RUN apt-get update
RUN apt-get install -y \
libsgx-aesm-launch-plugin \
libsgx-enclave-common \
libsgx-epid \
libsgx-launch \
libsgx-quote-ex \
libsgx-uae-service \
libsgx-qe3-logic \
libsgx-pce-logic \
libsgx-aesm-pce-plugin \
libsgx-dcap-ql \
libsgx-dcap-quote-verify \
libsgx-urts \
sgx-aesm-service \
libsgx-aesm-ecdsa-plugin \
libsgx-aesm-quote-ex-plugin \
libsgx-ae-qve \
libsgx-dcap-default-qpl

RUN apt upgrade

RUN npm install

ENTRYPOINT ["node", "test.js"]

0 comments on commit 9e544cd

Please sign in to comment.