Skip to content

Commit e147973

Browse files
committed
update dockerfile to remove vscode etx packages
1 parent 12b009b commit e147973

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

web/Dockerfile.app

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,9 @@ RUN npm install -g pnpm@latest
1010
# Copy package files for workspaces
1111
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
1212
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/
2013

2114
# Install dependencies
2215
RUN pnpm install --frozen-lockfile
16+
17+
# Copy source files (excluding node_modules which were installed above)
18+
COPY web/client/ ./web/client/

0 commit comments

Comments
 (0)