Server/project/pnpm.Dockerfile
2023-03-03 15:23:46 +00:00

10 lines
242 B
Docker

FROM node:lts-bullseye as builder
WORKDIR /app
ARG PNPM_VERSION=7.25.1
ENV PNPM_VERSION=$PNPM_VERSION
RUN curl -fsSL https://get.pnpm.io/install.sh | SHELL=`which bash` bash -
ENV PATH="$PATH:/root/.local/share/pnpm/"
ENTRYPOINT [ "pnpm" ]