This is an automated email from the ASF dual-hosted git repository.
mssun pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-teaclave.git
The following commit(s) were added to refs/heads/master by this push:
new 2017eaa [docker] Fix sgx sdk path (#357)
2017eaa is described below
commit 2017eaa8bca347c6b3c17432c3bdc5b2dacceb4b
Author: rebol0x6c <[email protected]>
AuthorDate: Thu Jun 18 01:31:29 2020 +0800
[docker] Fix sgx sdk path (#357)
---
docker/teaclave-rt.ubuntu-1804.Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docker/teaclave-rt.ubuntu-1804.Dockerfile
b/docker/teaclave-rt.ubuntu-1804.Dockerfile
index 8fafb3f..c686855 100644
--- a/docker/teaclave-rt.ubuntu-1804.Dockerfile
+++ b/docker/teaclave-rt.ubuntu-1804.Dockerfile
@@ -25,10 +25,10 @@ RUN mkdir /etc/init
# Install Intel SGX SDK for libsgx_urts_sim.so
RUN wget $SGX_LINUX_X64_SDK_URL && \
chmod u+x $SGX_LINUX_X64_SDK && \
- echo -e 'no\n/opt/intel' | ./$SGX_LINUX_X64_SDK && \
+ echo -e 'no\n/opt' | ./$SGX_LINUX_X64_SDK && \
rm $SGX_LINUX_X64_SDK && \
echo 'source /opt/sgxsdk/environment' >> /etc/environment
-ENV LD_LIBRARY_PATH=/opt/intel/sgxsdk/sdk_libs
+ENV LD_LIBRARY_PATH=/opt/sgxsdk/sdk_libs
# Make a directory for fusion data. Since we are in the single machine mode,
# there is no need to mount a network file system.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]