ki-frontend/Dockerfile
Mic Szillat 9df75d6d98 🔧 Configure KI API URL from environment
With an entrypoint script, fill the configuration template from an
environment variable containing the KI API URL.
2024-01-12 18:59:12 +01:00

30 lines
869 B
Docker

# SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
#
# 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
WORKDIR /usr/share/nginx/html
ENTRYPOINT ["/entrypoint.sh"]A
COPY etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf
COPY entrypoint.sh /
COPY --from=builder /dist .