The Angular CLI is a command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications directly from a command shell.
The Angular CLI is a command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications directly from a command shell.
Upstream documentation can be found [here](https://github.com/angular/angular-cli).
Upstream documentation can be found [here](https://github.com/angular/angular-cli).
\ No newline at end of file
## Usage
Typical local usage of this image:
Building the image:
Enter a name for your image in the <imageName> placeholder and verify successful build
```
docker build -t <imageName> .
docker images
```
Example Use:
```
If experiencing timeouts on installations, disable corporate vpn
docker run -u $(id -u) --rm -v "$PWD":/app trion/ng-cli ng new MyDemo
cd MyDemo
docker run -u $(id -u) --rm -v "$PWD":/app trion/ng-cli ng build