FROM node:17.9.1 AS app WORKDIR /app COPY package.json . COPY package-lock.json . RUN npm install COPY . . ENV REACT_APP_ENDPOINT "http://host.docker.internal:5001" RUN npm run build FROM nginx:alpine WORKDIR /usr/share/nginx/html RUN rm -rf ./* COPY --from=app /app/build . COPY nginx/default-dev.conf /etc/nginx/conf.d/default.conf EXPOSE 8000 ENTRYPOINT ["nginx", "-g", "daemon off;"]