From ab70795e740f5061915d165f0348106d4df8a646 Mon Sep 17 00:00:00 2001 From: Chimi1999 <143087281+Chimi1999@users.noreply.github.com> Date: Thu, 12 Dec 2024 13:36:38 +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 6b7eb61a9..98254b782 100644 --- a/Dockerfiles/Dockerfile.verification +++ b/Dockerfiles/Dockerfile.verification @@ -1,6 +1,9 @@ # Stage 1: Build the application FROM node:18-alpine as build -RUN npm install -g pnpm +RUN npm install -g pnpm -ignore-scripts \ + && apk update \ + && apk add openssl + # Set the working directory WORKDIR /app