From bb7321ed733bc91928a75ddc0ec0711e30736849 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 09:22:27 +0000 Subject: [PATCH] deps(phala-image): bump node in /enclave/phala Bumps node from 22-alpine to 26-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- enclave/phala/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/enclave/phala/Dockerfile b/enclave/phala/Dockerfile index c9bb2bf..54f3a27 100644 --- a/enclave/phala/Dockerfile +++ b/enclave/phala/Dockerfile @@ -3,7 +3,7 @@ # detects it and switches to TEE mode (deterministic secp256k1 key derived # inside the enclave, eth address committed into TDX quote report_data). # Build context: enclave/ (parent of this Dockerfile). -FROM node:22-alpine AS builder +FROM node:26-alpine AS builder RUN apk add --no-cache python3 make g++ libc6-compat WORKDIR /app COPY package.json package-lock.json ./ @@ -12,7 +12,7 @@ COPY tsconfig.json ./ COPY src ./src RUN npx tsc -p tsconfig.json -FROM node:22-alpine +FROM node:26-alpine WORKDIR /app ENV NODE_ENV=production COPY --from=builder /app/dist /app/dist