when I am using the below Dockerfile in the angular application and trying to run docker build -t mopendra/food-delivery-app-fe:0.0.1 ., getting the below error
here is the code in the docker file
Stage 1: Build the Angular apps
FROM node:18 as build
WORKDIR /app
COPY package*.json ./
RUN npm i
COPY . .
RUN npm run Build –prod
#Stage 2: Serve the Angular app using Nginx
FROM nginx:alpine
COPY –from=build /app/dist/food-delivery-app /usr/share/nginx/html
EXPOSE 80
CMD [ “nginx”, “-g”, “daemon off;”]