Codebase list massdns / 0b05b116-9509-47df-a4d3-0e1baa843f22/main Dockerfile
0b05b116-9509-47df-a4d3-0e1baa843f22/main

Tree @0b05b116-9509-47df-a4d3-0e1baa843f22/main (Download .tar.gz)

Dockerfile @0b05b116-9509-47df-a4d3-0e1baa843f22/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"]