You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
351 B
16 lines
351 B
4 years ago
|
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
|