1
0
mirror of https://github.com/Luzifer/dns.git synced 2024-09-19 23:32:56 +00:00
dns/Dockerfile

21 lines
337 B
Docker

FROM golang:alpine
ADD ./build.sh /usr/local/bin/build.sh
RUN set -ex \
&& apk --no-cache add git bash \
&& bash /usr/local/bin/build.sh
FROM alpine
LABEL maintainer Knut Ahlers <knut@ahlers.me>
COPY --from=0 /go/bin/coredns /usr/local/bin/
ADD . /src
WORKDIR /src
EXPOSE 53/udp
ENTRYPOINT ["/usr/local/bin/coredns"]
CMD ["--"]