awesome-compose/angular/angular/Dockerfile
Lucas cc821da3de
hot reload not working on windows
The app would not reload automatically when changes are made to the application, I think --live-reload option would also work but I have not tested it with --live-reload
2021-08-17 12:28:01 +02:00

11 lines
161 B
Docker
Executable File

FROM node:10
RUN mkdir /project
WORKDIR /project
COPY . .
RUN npm install -g @angular/cli
RUN yarn install
CMD ["ng", "serve", "--host", "0.0.0.0", "--poll"]