Codebase list massdns / 7fb8338e-abe9-4c08-b9a3-8d4d2e2d93e2/main Dockerfile
7fb8338e-abe9-4c08-b9a3-8d4d2e2d93e2/main

Tree @7fb8338e-abe9-4c08-b9a3-8d4d2e2d93e2/main (Download .tar.gz)

Dockerfile @7fb8338e-abe9-4c08-b9a3-8d4d2e2d93e2/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"]