pnpm 11 defaults strictDepBuilds to true, so a dependency build script that is not pre-decided in allowBuilds becomes a hard error. The install layer only copied package.json and the lockfile, so the vue-demi build decision in pnpm-workspace.yaml was absent and the build failed.
12 lines
303 B
Docker
12 lines
303 B
Docker
FROM node:22-alpine AS build
|
|
WORKDIR /app
|
|
COPY package.json pnpm-lock.yaml* pnpm-workspace.yaml ./
|
|
RUN corepack enable && pnpm install --frozen-lockfile
|
|
COPY . .
|
|
RUN pnpm build
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 80
|