feat: Add openSSL support to docker images
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Lukas | AstroGD 2024-12-16 16:37:55 +01:00
parent bb4c4cd34a
commit fef09beaf3
Signed by: AstroGD
GPG Key ID: 82A5E6C236C535AA
2 changed files with 8 additions and 6 deletions

View File

@ -1,4 +1,5 @@
FROM node:alpine as BASE
ENV PNPM_HOME="./.pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN npm i -g pnpm@latest
ENV PNPM_HOME="./.pnpm" \
PATH="$PNPM_HOME:$PATH"
RUN npm i -g pnpm@latest &&\
apk add --no-cache openssl

View File

@ -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
ENV PNPM_HOME="./.pnpm" \
PATH="$PNPM_HOME:$PATH"
RUN npm i -g pnpm@latest &&\
apk add --no-cache openssl