diff --git a/Dockerfiles/Dockerfile.api-gateway b/Dockerfiles/Dockerfile.api-gateway index faa350f07..734be7520 100644 --- a/Dockerfiles/Dockerfile.api-gateway +++ b/Dockerfiles/Dockerfile.api-gateway @@ -2,7 +2,7 @@ FROM node:18-alpine as build RUN npm install -g pnpm --ignore-scripts \ && apk update \ - && apk add openssh-client + && apk add openssl # Set the working directory WORKDIR /app @@ -26,7 +26,7 @@ RUN pnpm run build api-gateway FROM node:18-alpine RUN npm install -g pnpm --ignore-scripts \ && apk update \ - && apk add openssh-client + && apk add openssl # Set the working directory WORKDIR /app