chore: switch yarn to PNPM

This commit is contained in:
Damillora 2023-08-09 00:29:07 +07:00
parent 79f0616532
commit 1bb69007aa
1 changed files with 1 additions and 1 deletions

View File

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