docker-pnpm/lts/Dockerfile
Lukas | AstroGD e2d3258d40
All checks were successful
continuous-integration/drone/push Build is passing
fix: Docker build warnings
2025-02-23 18:38:56 +01:00

5 lines
185 B
Docker

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