From c7a0c06fc08ae035607c05aa689b3e5ddd8ca522 Mon Sep 17 00:00:00 2001 From: raorla <159026312+raorla@users.noreply.github.com> Date: Thu, 4 Dec 2025 09:38:22 +0100 Subject: [PATCH] fix(iapp): update entrypoint command --- src/guides/build-iapp/advanced/build-your-first-sgx-iapp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guides/build-iapp/advanced/build-your-first-sgx-iapp.md b/src/guides/build-iapp/advanced/build-your-first-sgx-iapp.md index 6015461e..35fc9b12 100644 --- a/src/guides/build-iapp/advanced/build-your-first-sgx-iapp.md +++ b/src/guides/build-iapp/advanced/build-your-first-sgx-iapp.md @@ -366,7 +366,7 @@ Edit `iexec.json` and fill in the standard keys and the `mrenclave` object: "mrenclave": { "framework": "SCONE", // TEE framework (keep default value) "version": "v5.9", // Scone version (keep default value) - "entrypoint": "node /app/app.js" OR "python3 /app/app.py", // update it with your own image entrypoint + "entrypoint": "node --disable-wasm-trap-handler /app/app.js" OR "python3 /app/app.py", // update it with your own image entrypoint "heapSize": 1073741824, // heap size in bytes, update it with --heap option value used in sconify.sh script during TEE image build "fingerprint": "" // fingerprint of the enclave code (mrenclave), without 0x prefix, see how to retrieve it below }