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.
docker-irc/kiwiirc/Dockerfile

16 lines
378 B

4 years ago
FROM node:current-alpine AS builder
RUN apk --update add git python3 make g++ && \
git clone --depth 1 https://github.com/kiwiirc/kiwiirc.git && \
4 years ago
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