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 82badab commit a03aaecCopy full SHA for a03aaec
1 file changed
Dockerfile
@@ -23,8 +23,8 @@ RUN rm -rf node_modules
23
RUN node ./scripts/move_ddtrace_dependency.js "$(cat package.json)" > package-new.json
24
RUN mv package-new.json package.json
25
# 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
+# Yarn Berry equivalent of --production (workspace-tools is built-in since Yarn 4)
+RUN yarn workspaces focus --production
28
# Copy the dependencies to the modules folder
29
RUN cp -rf node_modules/* /nodejs/node_modules
30
0 commit comments