Mic Szillat
7bba73ceae
Some checks failed
continuous-integration/drone/pr Build is failing
With an entrypoint script, fill the configuration template from an environment variable containing the KI API URL.
29 lines
880 B
Docker
29 lines
880 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 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 .
|