Dockerfile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. wget \
  17. tar \
  18. git \
  19. netcat \
  20. libaspell-dev \
  21. libhunspell-dev \
  22. hunspell-en-us \
  23. aspell-en \
  24. shellcheck \
  25. && apt-get -y update \
  26. && apt-get -y upgrade \
  27. && apt-get -y autoremove \
  28. && apt-get -y autoclean
  29. ENV GOROOT /usr/local/go
  30. ENV GOPATH /go
  31. ENV PATH ${GOPATH}/bin:${GOROOT}/bin:${PATH}
  32. ENV GO_VERSION REPLACE_ME_GO_VERSION
  33. ENV GO_DOWNLOAD_URL https://storage.googleapis.com/golang
  34. RUN rm -rf ${GOROOT} \
  35. && curl -s ${GO_DOWNLOAD_URL}/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local/ -xz \
  36. && mkdir -p ${GOPATH}/src ${GOPATH}/bin \
  37. && go version
  38. RUN mkdir -p ${GOPATH}/src/github.com/coreos/etcd
  39. WORKDIR ${GOPATH}/src/github.com/coreos/etcd