# SPDX-FileCopyrightText: WTF Kooperative eG # # SPDX-License-Identifier: AGPL-3.0-or-later FROM node:14-alpine as builder COPY . ./ RUN npm ci && npm run build FROM nginx as ki-frontend COPY --from=builder /dist/ /usr/share/nginx/html/ COPY etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf LABEL org.opencontainers.image.source=https://git.wtf-eg.de/kompetenzinventar/ki-frontend.git LABEL org.opencontainers.image.url=https://git.wtf-eg.de/kompetenzinventar/ki-frontend LABEL org.opencontainers.image.documentation=https://git.wtf-eg.de/kompetenzinventar/ki-frontend#docker LABEL org.opencontainers.image.vendor="WTF Kooperative eG" ENV KI_API_URL http://ki-backend:5000 WORKDIR /usr/share/nginx/html COPY etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf COPY configure.sh /docker-entrypoint.d/ COPY --from=builder /dist .