ki-frontend/Dockerfile

16 lines
330 B
Docker
Raw Normal View History

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
2021-06-14 22:27:23 +02:00
FROM node:14-alpine as builder
COPY . ./
RUN npm ci && npm run build
2021-07-26 21:01:45 +02:00
FROM nginx as ki-frontend
2021-06-14 22:27:23 +02:00
COPY --from=builder /dist/ /usr/share/nginx/html/
2021-09-19 12:19:40 +02:00
COPY etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf