Skip to content

Commit a3626a4

Browse files
committed
angular-cli v11.2.14
1 parent 6b80504 commit a3626a4

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ LABEL authors="Alejandro Such <alejandro.such@gmail.com> , Mihai Bob <mihai.m.bo
44

55
RUN apk update \
66
&& apk add --update alpine-sdk python3 \
7-
&& yarn global add @angular/cli@10.2.3 \
7+
&& yarn global add @angular/cli@11.2.14 \
88
&& ng config --global cli.packageManager yarn \
99
&& apk del alpine-sdk python3 \
1010
&& rm -rf /tmp/* /var/cache/apk/* *.tar.gz ~/.npm \

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
|___/
88
```
99

10-
**@angular/cli:** 10.2.3<br/>
10+
**@angular/cli:** 11.2.14<br/>
1111
**node:** 14.18.0<br/>
1212
**npm:** 6.14.15<br/>
1313
**yarn:** 1.22.5<br/>
@@ -16,6 +16,7 @@
1616
**docker hub:** https://hub.docker.com/r/alexsuch/angular-cli/
1717

1818
[![Docker Pulls](https://img.shields.io/docker/pulls/alexsuch/angular-cli.svg)](https://hub.docker.com/r/alexsuch/angular-cli/)
19+
[![Docker Stars](https://img.shields.io/docker/stars/alexsuch/angular-cli.svg)](https://hub.docker.com/r/alexsuch/angular-cli/)
1920

2021
## Usage examples
2122

@@ -24,19 +25,19 @@ This image has the same usage as Angular CLI (https://cli.angular.io/)
2425
### Creating a project
2526

2627
```
27-
docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:10.2.3 ng new my-project-name
28+
docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:11.2.14 ng new my-project-name
2829
```
2930

3031
### Generating a component
3132

3233
```
33-
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app alexsuch/angular-cli:10.2.3 ng g component sample-component
34+
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app alexsuch/angular-cli:11.2.14 ng g component sample-component
3435
```
3536

3637
### Serving
3738

3839
```
39-
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app -p 4200:4200 alexsuch/angular-cli:10.2.3 ng serve --host 0.0.0.0
40+
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app -p 4200:4200 alexsuch/angular-cli:11.2.14 ng serve --host 0.0.0.0
4041
```
4142

4243
## Credits

0 commit comments

Comments
 (0)