https://github.com/trion-development/angular-docker-multistage
Example project for Angular CLI docker multi stage build
https://github.com/trion-development/angular-docker-multistage
Last synced: about 1 year ago
JSON representation
Example project for Angular CLI docker multi stage build
- Host: GitHub
- URL: https://github.com/trion-development/angular-docker-multistage
- Owner: trion-development
- Created: 2017-06-29T18:32:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-29T18:36:15.000Z (almost 9 years ago)
- Last Synced: 2025-04-09T08:38:50.585Z (about 1 year ago)
- Language: TypeScript
- Size: 11.7 KB
- Stars: 4
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AngularCLI and docker multi-stage build
Example project to demonstrate a docker multi-stage build using nginx as webserver for the final Angular application.
Build:
```
docker build -t sample/angular-app
```
Execute final image using
```
docker run --rm -p 8080:8080 sample/angular-app
```
And access using http://localhost:8080
The project is using the Docker image https://hub.docker.com/r/trion/ng-cli/ for building the Angular application using Docker.