⚗️ Check if build is passing with npm instead of yarn

This commit is contained in:
Manuel
2023-08-29 22:08:26 +02:00
parent 516c5b41ea
commit aba42a1aa1
3 changed files with 8 additions and 6 deletions

View File

@@ -19,8 +19,10 @@ COPY prisma/schema.prisma prisma/schema.prisma
COPY ./scripts/run.sh ./scripts/run.sh
RUN npm config set unsafe-perm true
ARG NPM_CONFIG_LOGLEVEL=verbose
RUN yarn global add prisma
RUN npm i -g prisma
# RUN yarn global add prisma
RUN which prisma
EXPOSE 7575