Codebase list massdns / 4992b5f5-f0ab-4d49-b157-75eb1a45a336/main Dockerfile
4992b5f5-f0ab-4d49-b157-75eb1a45a336/main

Tree @4992b5f5-f0ab-4d49-b157-75eb1a45a336/main (Download .tar.gz)

Dockerfile @4992b5f5-f0ab-4d49-b157-75eb1a45a336/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"]