Codebase list massdns / 82d4e916-c0c7-4d13-bb50-89251ab401c4/main Dockerfile
82d4e916-c0c7-4d13-bb50-89251ab401c4/main

Tree @82d4e916-c0c7-4d13-bb50-89251ab401c4/main (Download .tar.gz)

Dockerfile @82d4e916-c0c7-4d13-bb50-89251ab401c4/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"]