0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 08:30:44 -05:00
server/project/pnpm.Dockerfile

10 lines
242 B
Docker
Raw Normal View History

2023-03-03 15:23:46 +00:00
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" ]