Skip to content

Commit 9e8aa95

Browse files
committed
Update CLI version to 1.4.1
1 parent e7745ef commit 9e8aa95

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 \
7-
&& npm install -g @angular/cli@1.4.0 \
7+
&& npm install -g @angular/cli@1.4.1 \
88
&& ng set --global packageManager=yarn \
99
&& apk del alpine-sdk \
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:** 1.4.0<br/>
10+
**@angular/cli:** 1.4.1<br/>
1111
**node:** 6.11.2<br/>
1212
**npm:** 3.10.10<br/>
1313
**yarn:** 0.24.6<br/>
@@ -24,19 +24,19 @@ This image has the same usage as Angular CLI (https://cli.angular.io/)
2424
### Creating a project
2525

2626
```
27-
docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:1.4.0 ng new my-project-name
27+
docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:1.4.1 ng new my-project-name
2828
```
2929

3030
### Generating a component
3131

3232
```
33-
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app alexsuch/angular-cli:1.4.0 ng g component sample-component
33+
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app alexsuch/angular-cli:1.4.1 ng g component sample-component
3434
```
3535

3636
### Serving
3737

3838
```
39-
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app -p 4200:4200 alexsuch/angular-cli:1.4.0 ng serve --host 0.0.0.0
39+
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app -p 4200:4200 alexsuch/angular-cli:1.4.1 ng serve --host 0.0.0.0
4040
```
4141

4242
## Credits

0 commit comments

Comments
 (0)