FROM node:14.21.3 WORKDIR /frontend-app COPY package.json . RUN npm install COPY . . EXPOSE 4200 CMD [ "ng","serve" ]