Codebase list massdns / 627b47b6-46df-4f6d-bf56-a25a2cc8daae/main Dockerfile
627b47b6-46df-4f6d-bf56-a25a2cc8daae/main

Tree @627b47b6-46df-4f6d-bf56-a25a2cc8daae/main (Download .tar.gz)

Dockerfile @627b47b6-46df-4f6d-bf56-a25a2cc8daae/mainraw · history · blame

FROM ubuntu:16.04
LABEL maintainer Aditya Gujar (@aditya_gujar)

RUN apt-get update

RUN apt-get install -y libldns-dev git build-essential

RUN apt-get install -y python

RUN git clone https://github.com/blechschmidt/massdns.git

WORKDIR /massdns/

RUN make

ENTRYPOINT ["./bin/massdns"]