# SPDX-FileCopyrightText: WTF Kooperative eG # # SPDX-License-Identifier: AGPL-3.0-or-later FROM node:20.17.0-alpine@sha256:9fde95f2c4d8aa5abe327ef69565dd944321ed8541b1df86041b41d63d54c215 as builder COPY package.json package-lock.json ./ RUN npm install COPY .eslintrc.js . COPY babel.config.js . COPY public public COPY src src RUN npm ci && npm run build FROM nginx:1.27-alpine@sha256:c04c18adc2a407740a397c8407c011fc6c90026a9b65cceddef7ae5484360158 as ki-frontend 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" WORKDIR /usr/share/nginx/html COPY etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf COPY --from=builder /dist .