migrate to pnpm due to ci/cd issues with yarn

This commit is contained in:
DecDuck
2024-11-04 21:52:31 +11:00
parent 36568c3845
commit 9cb2d6d02f
6 changed files with 8988 additions and 7180 deletions

View File

@ -6,9 +6,10 @@ RUN mkdir /build
WORKDIR /build
# install dependencies and build
RUN corepack enable
COPY . .
RUN yarn install --non-interactive --verbose
RUN yarn build
RUN pnpm install
RUN pnpm build
# create run environment for Drop
FROM node:lts-slim AS run-system