Codebase list massdns / master Dockerfile
master

Tree @master (Download .tar.gz)

Dockerfile @masterraw · history · blame

1
2
3
4
5
6
7
8
9
FROM alpine:edge

RUN apk --update --no-cache --virtual .build-deps add git build-base \
   && git clone --depth=1 https://github.com/blechschmidt/massdns.git \
   && cd massdns && make && apk del .build-deps

WORKDIR /massdns/

ENTRYPOINT ["./bin/massdns"]