Skip to content

Commit 853955d

Browse files
author
Alejandro Such
committed
Update CLI version to 7.3.8
1 parent 469e495 commit 853955d

2 files changed

Lines changed: 4 additions & 4 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 python git \
7-
&& npm install -g @angular/cli@7.0.6 \
7+
&& npm install -g @angular/cli@7.3.8 \
88
&& apk del alpine-sdk python \
99
&& rm -rf /tmp/* /var/cache/apk/* *.tar.gz ~/.npm \
1010
&& npm cache clean --force \

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ This image has the same usage as Angular CLI (https://cli.angular.io/)
2222
### Creating a project
2323

2424
```
25-
docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:7.0.6 ng new my-project-name
25+
docker run -it --rm -w /app -v $(pwd):/app alexsuch/angular-cli:7.3.8 ng new my-project-name
2626
```
2727

2828
### Generating a component
2929

3030
```
31-
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app alexsuch/angular-cli:7.0.6 ng g component sample-component
31+
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app alexsuch/angular-cli:7.3.8 ng g component sample-component
3232
```
3333

3434
### Serving
3535

3636
```
37-
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app -p 4200:4200 alexsuch/angular-cli:7.0.6 ng serve --host 0.0.0.0
37+
docker run -it --rm -w /app -v $(pwd)/my-project-name:/app -p 4200:4200 alexsuch/angular-cli:7.3.8 ng serve --host 0.0.0.0
3838
```
3939

4040
## Credits

0 commit comments

Comments
 (0)