no frozen lockfile

This commit is contained in:
Jade Ellis 2024-08-25 05:38:53 +01:00
parent a975706711
commit d9cfc4bd2f
No known key found for this signature in database
GPG key ID: 8705A2A3EBF77BD2

View file

@ -26,7 +26,7 @@ RUN corepack enable
COPY --from=base /app/packages/website/package.json ./package.json
COPY --from=base /app/pnpm-lock.yaml ./pnpm-lock.yaml
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile --prod
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --no-frozen-lockfile --prod
FROM node:alpine