Codebase list massdns / 5270547a-7fc3-4866-8654-48036b9aa25f/main Dockerfile
5270547a-7fc3-4866-8654-48036b9aa25f/main

Tree @5270547a-7fc3-4866-8654-48036b9aa25f/main (Download .tar.gz)

Dockerfile @5270547a-7fc3-4866-8654-48036b9aa25f/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"]