Skip to content

Commit d015b89

Browse files
committed
Fix frontend Dockerfile to include pnpm-workspace.yaml
The pnpm-workspace.yaml contains security overrides that must be present during install, otherwise pnpm fails with ERR_PNPM_LOCKFILE_CONFIG_MISMATCH.
1 parent 38510aa commit d015b89

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

quotes-frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RUN npm install -g pnpm@10
33

44
FROM base AS deps
55
WORKDIR /app
6-
COPY package.json pnpm-lock.yaml .npmrc ./
6+
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml .npmrc ./
77
RUN pnpm install --frozen-lockfile
88

99
FROM base AS builder

0 commit comments

Comments
 (0)