Codebase list massdns / a10f7478-1068-4972-a8ac-7ca0e65ad891/upstream Dockerfile
a10f7478-1068-4972-a8ac-7ca0e65ad891/upstream

Tree @a10f7478-1068-4972-a8ac-7ca0e65ad891/upstream (Download .tar.gz)

Dockerfile @a10f7478-1068-4972-a8ac-7ca0e65ad891/upstreamraw · 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"]