Include pnpm workspace config in Docker build

This commit is contained in:
Ruslan Bakiev
2026-05-15 12:32:48 +07:00
parent 107623ca92
commit 6a49cbcc30

View File

@@ -4,7 +4,7 @@ WORKDIR /app
RUN corepack enable
COPY package.json pnpm-lock.yaml ./
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
RUN pnpm install --frozen-lockfile
FROM deps AS build