Dockerfile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. FROM ubuntu:18.04
  2. RUN rm /bin/sh && ln -s /bin/bash /bin/sh
  3. RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
  4. RUN apt-get -y update \
  5. && apt-get -y install \
  6. build-essential \
  7. gcc \
  8. apt-utils \
  9. pkg-config \
  10. software-properties-common \
  11. apt-transport-https \
  12. libssl-dev \
  13. sudo \
  14. bash \
  15. curl \
  16. tar \
  17. git \
  18. netcat \
  19. bind9 \
  20. dnsutils \
  21. lsof \
  22. && apt-get -y update \
  23. && apt-get -y upgrade \
  24. && apt-get -y autoremove \
  25. && apt-get -y autoclean
  26. ENV GOROOT /usr/local/go
  27. ENV GOPATH /go
  28. ENV PATH ${GOPATH}/bin:${GOROOT}/bin:${PATH}
  29. ENV GO_VERSION REPLACE_ME_GO_VERSION
  30. ENV GO_DOWNLOAD_URL https://storage.googleapis.com/golang
  31. RUN rm -rf ${GOROOT} \
  32. && curl -s ${GO_DOWNLOAD_URL}/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local/ -xz \
  33. && mkdir -p ${GOPATH}/src ${GOPATH}/bin \
  34. && go version \
  35. && go get -v -u github.com/mattn/goreman
  36. RUN mkdir -p /var/bind /etc/bind
  37. RUN chown root:bind /var/bind /etc/bind
  38. ADD named.conf etcd.zone rdns.zone /etc/bind/
  39. RUN chown root:bind /etc/bind/named.conf /etc/bind/etcd.zone /etc/bind/rdns.zone
  40. ADD resolv.conf /etc/resolv.conf