dont use pnpm in docker

This commit is contained in:
2025-07-31 00:25:40 -04:00
parent 58038a6e86
commit 4efc60861b

View File

@@ -2,9 +2,9 @@ FROM node:22-slim
WORKDIR /app WORKDIR /app
COPY package.json pnpm-lock.yaml ./ COPY package.json ./
RUN pnpm install RUN npm install
COPY . . COPY . .
CMD ["pnpm", "run", "start"] CMD ["npm", "run", "start"]