Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/dapp-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ jobs:
/etc/resolv.conf
binary-fs: true
fs-dir: /app
heap: 7G
heap: 1G
dlopen: 1
mprotect: 1
mprotect: 0
secrets:
docker-username: ${{ secrets.DOCKERHUB_USERNAME }}
docker-password: ${{ secrets.DOCKERHUB_PAT }}
Expand Down
2 changes: 1 addition & 1 deletion dapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.19-alpine3.22
FROM node:22-alpine3.22
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
Expand Down
2 changes: 1 addition & 1 deletion deployment-dapp/src/singleFunction/deployApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
console.log(`Using SCONIFY version: ${sconifyVersion}`);

const mrenclave = {
framework: 'SCONE' as any, // workaround framework not auto capitalized

Check warning on line 32 in deployment-dapp/src/singleFunction/deployApp.ts

View workflow job for this annotation

GitHub Actions / check-code

Unexpected any. Specify a different type
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")
entrypoint: 'node --disable-wasm-trap-handler /app/app.js',
heapSize: 7516192768,
heapSize: 1073741824, // 1G
fingerprint,
};
const app = {
Expand Down
Loading