Codebase list massdns / 354d234d-be5b-4973-b43b-e8ef969ba1f7/main Dockerfile
354d234d-be5b-4973-b43b-e8ef969ba1f7/main

Tree @354d234d-be5b-4973-b43b-e8ef969ba1f7/main (Download .tar.gz)

Dockerfile @354d234d-be5b-4973-b43b-e8ef969ba1f7/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"]