From cc821da3dec5b01396d05699f1e6f79497d3f82b Mon Sep 17 00:00:00 2001 From: Lucas Date: Tue, 17 Aug 2021 12:28:01 +0200 Subject: [PATCH] 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 --- angular/angular/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angular/angular/Dockerfile b/angular/angular/Dockerfile index 12a0200..331f294 100755 --- a/angular/angular/Dockerfile +++ b/angular/angular/Dockerfile @@ -7,4 +7,4 @@ COPY . . RUN npm install -g @angular/cli RUN yarn install -CMD ["ng", "serve", "--host", "0.0.0.0"] +CMD ["ng", "serve", "--host", "0.0.0.0", "--poll"]