fix(docker): update COPY path after Tauri desktop removal (#1606)

The Tauri desktop package was renamed to electron in commit c7bc026b.
Update the Dockerfile so workspace paths match bun.lock.
This commit is contained in:
Gautam0507
2026-06-11 02:02:51 +03:00
committed by GitHub
parent 3e7d3f85c7
commit 4198246671
+1 -1
View File
@@ -7,7 +7,7 @@ WORKDIR /app
COPY package.json bun.lock ./
COPY packages/ui/package.json ./packages/ui/
COPY packages/web/package.json ./packages/web/
COPY packages/desktop/package.json ./packages/desktop/
COPY packages/electron/package.json ./packages/electron/
COPY packages/vscode/package.json ./packages/vscode/
RUN bun install --frozen-lockfile --ignore-scripts