Dockerfile_dependencies 182 B

1234567891011121314
  1. # Base image
  2. FROM node:18
  3. # Set the working directory in the container
  4. WORKDIR /app
  5. COPY ../package.json ./
  6. # Install app dependencies
  7. RUN npm install -g pnpm
  8. RUN pnpm install