FROM node:14-slim WORKDIR /app COPY package*.json ./ RUN npm install -g pnpm RUN pnpm install COPY . . RUN pnpm build CMD ["node", "dist/index.js"]