FROM node:current-alpine AS builder RUN apk --update add git && \ git clone https://github.com/kiwiirc/kiwiirc.git && \ cd kiwiirc && \ yarn install && \ yarn run build FROM nginx:stable AS kiwiirc COPY --from=builder /kiwiirc/dist /usr/share/nginx/html #COPY static/config.json /usr/share/nginx/html/static/config.json EXPOSE 80