docker-pnpm/lts/Dockerfile
Lukas | AstroGD a605c62e11
All checks were successful
continuous-integration/drone/push Build is passing
fix: Pnpm not found error
2025-02-27 11:07:58 +01:00

6 lines
213 B
Docker

FROM node:lts-alpine AS base
ENV PNPM_HOME="./.pnpm" \
PATH="$PNPM_HOME:$PATH"
RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh - &&\
apk add --no-cache openssl
USER node