Codebase list massdns / ab9c9a84-4623-4bb9-801c-71f08b6780c6/main Dockerfile
ab9c9a84-4623-4bb9-801c-71f08b6780c6/main

Tree @ab9c9a84-4623-4bb9-801c-71f08b6780c6/main (Download .tar.gz)

Dockerfile @ab9c9a84-4623-4bb9-801c-71f08b6780c6/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"]