# Stage 1 FROM node:alpine WORKDIR /app COPY . . RUN npm install ENTRYPOINT npm run -- ng serve --host 0.0.0.0 --port 4200