Skip to content

Commit a03aaec

Browse files
committed
[SVLS-8827] fix dockerfile remove unnecessary plugin import
1 parent 82badab commit a03aaec

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ RUN rm -rf node_modules
2323
RUN node ./scripts/move_ddtrace_dependency.js "$(cat package.json)" > package-new.json
2424
RUN mv package-new.json package.json
2525
# Install dependencies
26-
# Use yarn workspaces focus for production-only install (Yarn Berry equivalent of --production)
27-
RUN yarn plugin import workspace-tools && yarn workspaces focus --production
26+
# Yarn Berry equivalent of --production (workspace-tools is built-in since Yarn 4)
27+
RUN yarn workspaces focus --production
2828
# Copy the dependencies to the modules folder
2929
RUN cp -rf node_modules/* /nodejs/node_modules
3030

0 commit comments

Comments
 (0)