Skip to content

Commit f87b845

Browse files
gkalpakatscott
authored andcommitted
build: update the recommended Dockerfile for VSCode remote development (#34697)
PR Close #34697
1 parent f981dd9 commit f87b845

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.devcontainer/recommended-Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
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

45
LABEL 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.
1718
RUN 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.)

0 commit comments

Comments
 (0)