Codebase list massdns / a98c9841-199b-447c-a963-5c127b6813da/main Dockerfile
a98c9841-199b-447c-a963-5c127b6813da/main

Tree @a98c9841-199b-447c-a963-5c127b6813da/main (Download .tar.gz)

Dockerfile @a98c9841-199b-447c-a963-5c127b6813da/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"]