# the JRE is required by the openapi-generator-cli FROM eclipse-temurin:17-jre-alpine as builder RUN apk update && \ apk add nodejs npm WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY . . RUN npm run build -- --configuration production FROM nginxinc/nginx-unprivileged:alpine-slim USER root RUN apk add --no-cache gettext # required for envsubst in docker_entrypoint.sh USER nginx COPY --chown=nginx:nginx server/nginx* ./ COPY --chown=nginx:nginx docker_entrypoint.sh . COPY --from=builder --chown=nginx:nginx /usr/src/app/dist/frontend /usr/share/nginx/html ENTRYPOINT ["/docker_entrypoint.sh"] EXPOSE ${NGINX_PORT} CMD ["nginx", "-g", "daemon off;"]