In this video, I'll show how to create and run Angular app using Docker, without installing Node in the Host machine.
- Create folder
$ mkdir ng-docker && cd ng-docker
- Create
Dockerfilefile
FROM node:12-alpine
LABEL AUTHOR="Arunkumar Dharuman"
WORKDIR /code
RUN npm install -g @angular/cli
- Create
docker-compose.yamlfile
version …