File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 11# Image metadata and config.
2- FROM circleci/node:10-browsers # This needs to be in sync with what we use on CI.
2+ FROM circleci/node:10-browsers # Ideally, the image version should be what we use on CI.
3+ # See `executors > browsers-executor` in `.circleci/config.yml`.
34
45LABEL name="Angular dev environment" \
56 description="This image can be used to create a dev environment for building Angular." \
@@ -15,7 +16,8 @@ USER root
1516
1617# Configure `Node.js`/`npm` and install utilities.
1718RUN npm config --global set user root
18- RUN npm install --global yarn@1.19.1 # This needs to be in sync with what we use on CI.
19+ RUN npm install --global yarn@latest # Ideally, the version should be what we use on CI.
20+ # See `commands > overwrite_yarn` in `.circleci/config.yml`.
1921
2022
2123# Go! (And keep going.)
You can’t perform that action at this time.
0 commit comments