Skip to content

Commit ab5fa3d

Browse files
build(docker): use Node 24.6.0 and remove custom entrypoint flag --disable-wasm-trap-handler
1 parent b9fec18 commit ab5fa3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dapp/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM node:20.11.1-alpine3.19
1+
FROM node:24.6.0-alpine3.22
22
WORKDIR /app
33
COPY package*.json ./
44
RUN npm ci --production
55
COPY ./src .
6-
ENTRYPOINT [ "node", "--disable-wasm-trap-handler", "/app/app.js" ]
6+
ENTRYPOINT [ "node", "/app/app.js" ]

deployment-dapp/src/singleFunction/deployApp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const deployApp = async ({
3131
const mrenclave = {
3232
framework: 'SCONE' as any, // workaround framework not auto capitalized
3333
version: `v${sconifyVersion.split('.').slice(0, 2).join('.')}`, // extracts "vX.Y" from "X.Y.Z-vN" format (e.g., "5.9.1-v16" → "v5.9")
34-
entrypoint: 'node --disable-wasm-trap-handler /app/app.js',
34+
entrypoint: 'node /app/app.js',
3535
heapSize: 1073741824,
3636
fingerprint,
3737
};

0 commit comments

Comments
 (0)