From 9dae694b16b073e06cee030b024ea10762905bf8 Mon Sep 17 00:00:00 2001 From: Chimi1999 <143087281+Chimi1999@users.noreply.github.com> Date: Thu, 12 Dec 2024 20:46:16 +0600 Subject: [PATCH] Update Dockerfile.verification Signed-off-by: Chimi1999 <143087281+Chimi1999@users.noreply.github.com> --- Dockerfiles/Dockerfile.verification | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfiles/Dockerfile.verification b/Dockerfiles/Dockerfile.verification index 98254b782..25ddecc77 100644 --- a/Dockerfiles/Dockerfile.verification +++ b/Dockerfiles/Dockerfile.verification @@ -23,7 +23,10 @@ RUN npm run build verification # Stage 2: Create the final image FROM node:18-alpine -RUN npm install -g pnpm +RUN npm install -g pnpm -ignore-scripts \ + && apk update \ + && apk add openssl + # Set the working directory WORKDIR /app