25 lines
855 B
Plaintext
25 lines
855 B
Plaintext
# Image metadata and config.
|
|
FROM circleci/node:10-browsers # Ideally, the image version should be what we use on CI.
|
|
# See `executors > browsers-executor` in `.circleci/config.yml`.
|
|
|
|
LABEL name="Angular dev environment" \
|
|
description="This image can be used to create a dev environment for building Angular." \
|
|
vendor="angular" \
|
|
version="1.0"
|
|
|
|
EXPOSE 4000 4200 4433 5000 8080 9876
|
|
|
|
|
|
# Switch to `root` (CircleCI images use `circleci` as the user).
|
|
USER root
|
|
|
|
|
|
# Configure `Node.js`/`npm` and install utilities.
|
|
RUN npm config --global set user root
|
|
RUN npm install --global yarn@latest # Ideally, the version should be what we use on CI.
|
|
# See `commands > overwrite_yarn` in `.circleci/config.yml`.
|
|
|
|
|
|
# Go! (And keep going.)
|
|
CMD ["tail", "--follow", "/dev/null"]
|