From fef09beaf3270a4f1a08bf3892c6f2c864b0fe3f Mon Sep 17 00:00:00 2001 From: Lukas | AstroGD Date: Mon, 16 Dec 2024 16:37:55 +0100 Subject: [PATCH] feat: Add openSSL support to docker images --- latest/Dockerfile | 7 ++++--- lts/Dockerfile | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) 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