Codebase list massdns / efe3d597-61d1-4062-91d6-a69d43c3609b/main Dockerfile
efe3d597-61d1-4062-91d6-a69d43c3609b/main

Tree @efe3d597-61d1-4062-91d6-a69d43c3609b/main (Download .tar.gz)

Dockerfile @efe3d597-61d1-4062-91d6-a69d43c3609b/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"]