docker-pnpm/latest/Dockerfile
Lukas | AstroGD eb80746d1b
All checks were successful
continuous-integration/drone/push Build is passing
fix: fix pnpm directory
2025-02-27 11:29:55 +01:00

6 lines
204 B
Docker

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