I am new to Docker . I need to run a angular application and containerise the app in Docker.
Dockerfile:
WORKDIR /usr/src/app
ENTRYPOINT ["sh", "/docker-entrypoint.sh"]
COPY package.json package-lock.json ./
RUN npm install
RUN npm install -g @angular/cli
COPY . .
EXPOSE 8000
CMD ["npm","start"] .
I am getting error message when I start the container.[Please refer the picture I have started the conatiner]
Error message:
sh: 0: Can't open /docker-entrypoint.sh
What is docker-entrypoint.sh? why docker-entrypoint.sh is not open while starting to run the container ?
Can you please help how to fix this problem ?