Skip to content

Commit c19eb48

Browse files
committed
angular/cli@11.2.15
1 parent a3626a4 commit c19eb48

2 files changed

Lines changed: 5 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@11.2.14 \
7+
&& yarn global add @angular/cli@11.2.15 \
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
|___/
88
```
99

10-
**@angular/cli:** 11.2.14<br/>
10+
**@angular/cli:** 11.2.15<br/>
1111
**node:** 14.18.0<br/>
1212
**npm:** 6.14.15<br/>
1313
**yarn:** 1.22.5<br/>
@@ -25,19 +25,19 @@ This image has the same usage as Angular CLI (https://cli.angular.io/)
2525
### Creating a project
2626

2727
```
28-
docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:11.2.14 ng new my-project-name
28+
docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:11.2.15 ng new my-project-name
2929
```
3030

3131
### Generating a component
3232

3333
```
34-
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app alexsuch/angular-cli:11.2.14 ng g component sample-component
34+
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app alexsuch/angular-cli:11.2.15 ng g component sample-component
3535
```
3636

3737
### Serving
3838

3939
```
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
40+
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app -p 4200:4200 alexsuch/angular-cli:11.2.15 ng serve --host 0.0.0.0
4141
```
4242

4343
## Credits

0 commit comments

Comments
 (0)