We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12b009b commit e147973Copy full SHA for e147973
web/Dockerfile.app
@@ -10,13 +10,9 @@ RUN npm install -g pnpm@latest
10
# Copy package files for workspaces
11
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
12
COPY web/client/package.json ./web/client/
13
-COPY vscode/extension/package.json ./vscode/extension/
14
-COPY vscode/bus/package.json ./vscode/bus/
15
-
16
-# Copy source files
17
-COPY web/client/ ./web/client/
18
-COPY vscode/extension/ ./vscode/extension/
19
-COPY vscode/bus/ ./vscode/bus/
20
21
# Install dependencies
22
RUN pnpm install --frozen-lockfile
+
+# Copy source files (excluding node_modules which were installed above)
+COPY web/client/ ./web/client/
0 commit comments