FROM docker.io/library/node AS build COPY . . ENV ASTRO_TELEMETRY_DISABLED=true RUN npm install RUN npm run build FROM git.swablab.de/swablab/documents AS documents FROM docker.io/nginxinc/nginx-unprivileged COPY ./nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build ./dist /usr/share/nginx/html COPY --from=documents / /usr/share/nginx/html/docs