FROM node:current-alpine AS builder RUN apk --update add git python3 make g++ && \ git clone --depth 1 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