We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0f8fc commit ceba932Copy full SHA for ceba932
dapp/Dockerfile
@@ -3,4 +3,4 @@ WORKDIR /app
3
COPY package*.json ./
4
RUN npm ci --production
5
COPY ./src .
6
-ENTRYPOINT [ "node", "--disable-wasm-trap-handler", "/app/app.js" ]
+ENTRYPOINT [ "node", "/app/app.js" ]
deployment-dapp/src/singleFunction/deployApp.ts
@@ -27,7 +27,7 @@ export const deployApp = async ({
27
const mrenclave = {
28
framework: 'SCONE' as any, // workaround framework not auto capitalized
29
version: 'v5.9',
30
- entrypoint: 'node --disable-wasm-trap-handler /app/app.js',
+ entrypoint: 'node /app/app.js',
31
heapSize: 1073741824,
32
fingerprint,
33
};
0 commit comments