Codebase list massdns / e4dd7729-17cd-4c4e-a2ed-24184167e7fa/main Dockerfile
e4dd7729-17cd-4c4e-a2ed-24184167e7fa/main

Tree @e4dd7729-17cd-4c4e-a2ed-24184167e7fa/main (Download .tar.gz)

Dockerfile @e4dd7729-17cd-4c4e-a2ed-24184167e7fa/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"]