Dockerfile 911 B

12345678910111213141516171819202122232425262728293031323334353637
  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. && apt-get -y update \
  22. && apt-get -y upgrade \
  23. && apt-get -y autoremove \
  24. && apt-get -y autoclean
  25. ENV GOROOT /usr/local/go
  26. ENV GOPATH /go
  27. ENV PATH ${GOPATH}/bin:${GOROOT}/bin:${PATH}
  28. ENV GO_VERSION REPLACE_ME_GO_VERSION
  29. ENV GO_DOWNLOAD_URL https://storage.googleapis.com/golang
  30. RUN rm -rf ${GOROOT} \
  31. && curl -s ${GO_DOWNLOAD_URL}/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local/ -xz \
  32. && mkdir -p ${GOPATH}/src ${GOPATH}/bin \
  33. && go version \
  34. && go get -v -u github.com/mattn/goreman