Update pnpm from v7 to v8

That suppose to help with Dependabot security updates not updating lockfile.
This commit is contained in:
Dmitry Verkhoturov
2024-11-10 13:31:03 -06:00
committed by Umputun
parent 63048cc798
commit 3001b37812
11 changed files with 2217 additions and 2092 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ WORKDIR /srv/frontend
COPY ./frontend/package.json ./frontend/pnpm-lock.yaml ./frontend/pnpm-workspace.yaml /srv/frontend/
COPY ./frontend/apps/remark42/package.json /srv/frontend/apps/remark42/package.json
RUN apk add --no-cache --update git && npm i -g pnpm@7
RUN apk add --no-cache --update git && npm i -g pnpm@8
RUN --mount=type=cache,id=pnpm,target=/root/.pnpm-store/v3 pnpm i
FROM frontend-deps AS build-frontend