docker-pnpm/lts/Dockerfile
Lukas | AstroGD 7847ddf979
All checks were successful
continuous-integration/drone/push Build is passing
fix: Run pnpm as root per default
2025-02-27 11:27:39 +01:00

6 lines
209 B
Docker

FROM node:lts-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