docker-pnpm/lts/Dockerfile
Lukas | AstroGD 75b26569b4
All checks were successful
continuous-integration/drone/push Build is passing
Revert "fix: fix pnpm directory"
This reverts commit eb80746d1b2e0bdb5114d787aa82b646d019a2aa.
2025-02-27 11:34:10 +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