2021-09-19 12:55:33 +02:00
|
|
|
# SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
2024-08-22 11:36:14 +02:00
|
|
|
FROM node:20.12.2-alpine@sha256:7a91aa397f2e2dfbfcdad2e2d72599f374e0b0172be1d86eeb73f1d33f36a4b2 as builder
|
2021-06-14 22:27:23 +02:00
|
|
|
|
2024-04-23 22:47:54 +02:00
|
|
|
COPY package.json package-lock.json ./
|
2024-01-12 18:42:27 +01:00
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
COPY .eslintrc.js .
|
|
|
|
COPY babel.config.js .
|
|
|
|
COPY public public
|
|
|
|
COPY src src
|
2021-06-14 22:27:23 +02:00
|
|
|
|
|
|
|
RUN npm ci && npm run build
|
|
|
|
|
|
|
|
|
2024-08-22 11:36:14 +02:00
|
|
|
FROM nginx:1.24-alpine@sha256:77e5d4a6ad906c5d3793764085706577fa705b1dc6f244ea0241c4b5e2155385 as ki-frontend
|
2021-06-14 22:27:23 +02:00
|
|
|
|
2023-11-07 14:54:40 +01:00
|
|
|
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"
|
2024-01-12 18:42:27 +01:00
|
|
|
|
|
|
|
WORKDIR /usr/share/nginx/html
|
|
|
|
|
|
|
|
COPY etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
COPY --from=builder /dist .
|