diff --git a/latest/Dockerfile b/latest/Dockerfile index 8da5594..039e06d 100644 --- a/latest/Dockerfile +++ b/latest/Dockerfile @@ -1,4 +1,5 @@ FROM node:alpine as BASE -ENV PNPM_HOME="./.pnpm" -ENV PATH="$PNPM_HOME:$PATH" -RUN npm i -g pnpm@latest \ No newline at end of file +ENV PNPM_HOME="./.pnpm" \ + PATH="$PNPM_HOME:$PATH" +RUN npm i -g pnpm@latest &&\ + apk add --no-cache openssl \ No newline at end of file diff --git a/lts/Dockerfile b/lts/Dockerfile index 3469942..e713b2d 100644 --- a/lts/Dockerfile +++ b/lts/Dockerfile @@ -1,4 +1,5 @@ FROM node:lts-alpine as BASE -ENV PNPM_HOME="./.pnpm" -ENV PATH="$PNPM_HOME:$PATH" -RUN npm i -g pnpm@latest \ No newline at end of file +ENV PNPM_HOME="./.pnpm" \ + PATH="$PNPM_HOME:$PATH" +RUN npm i -g pnpm@latest &&\ + apk add --no-cache openssl \ No newline at end of file