back to yarn, with nuxt telemetry force disabled

I think Nuxt prompts have been messing with the installs
This commit is contained in:
DecDuck
2024-11-04 22:15:11 +11:00
parent eb66c5c07a
commit 46d35adfdb
5 changed files with 7179 additions and 8985 deletions

View File

@ -8,8 +8,8 @@ WORKDIR /build
# install dependencies and build
RUN corepack enable
COPY . .
RUN pnpm install
RUN pnpm build
RUN NUXT_TELEMETRY_DISABLED=1 yarn install
RUN NUXT_TELEMETRY_DISABLED=1 yarn build
# create run environment for Drop
FROM node:lts-slim AS run-system