Codebase list massdns / kali/1.0.0-0kali1 Dockerfile
kali/1.0.0-0kali1

Tree @kali/1.0.0-0kali1 (Download .tar.gz)

Dockerfile @kali/1.0.0-0kali1raw · history · blame

1
2
3
4
5
6
7
8
9
FROM alpine:edge

RUN apk --update --no-cache --virtual .build-deps add git build-base \
   && git clone --depth=1 https://github.com/blechschmidt/massdns.git \
   && cd massdns && make && apk del .build-deps

WORKDIR /massdns/

ENTRYPOINT ["./bin/massdns"]