Codebase list massdns / 586e54c6-4e23-46e4-8f96-49975fce5f93/main Dockerfile
586e54c6-4e23-46e4-8f96-49975fce5f93/main

Tree @586e54c6-4e23-46e4-8f96-49975fce5f93/main (Download .tar.gz)

Dockerfile @586e54c6-4e23-46e4-8f96-49975fce5f93/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"]