chore: add PNPM to dockerfile

This commit is contained in:
Damillora 2023-08-09 00:30:53 +07:00
parent 327ca4b0bb
commit e8a258353e
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ FROM node:18-alpine AS node_build
WORKDIR /src
COPY . .
WORKDIR /src/web/app
RUN pnpm install && pnpm build
RUN npm install -g pnpm && pnpm install && pnpm build
FROM alpine AS runtime