I am dockerizing an angular application. But I want to use bind mount for code sharing purpose. I am running following command which makes container up and running and entire application works completely fine. But when I make changes in my local repository, it doesn`t get reflected on a webpage.
This is how I run the container
docker run -d -p 4200:80 --rm --name frontend -v E:\dir1\dir2\subdirectory:/app image_name:image_tag
#Dockerfile
FROM node:14-alpine as node
WORKDIR /app
COPY ./package.json .
RUN npm install
COPY . .
RUN npm run build --prod
FROM nginx:alpine
COPY --from=node app/dist/angular-frontend usr/share/nginx/html
EXPOSE 80