fix(docker): include mongo shell workspace

This commit is contained in:
t8y2 2026-07-18 08:55:25 +08:00
parent 5206750a53
commit 423a0eb95c
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@
FROM --platform=$BUILDPLATFORM node:22-slim AS frontend
WORKDIR /app
RUN npm i -g pnpm
COPY package.json pnpm-lock.yaml ./
# Keep the workspace package available because Vite resolves it directly from source.
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
COPY packages/mongo-shell/ packages/mongo-shell/
RUN --mount=type=cache,target=/root/.local/share/pnpm/store \
pnpm install --frozen-lockfile
COPY apps/desktop/ apps/desktop/