github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/ci/cli-base/Dockerfile (about)

     1  FROM golang:1.9
     2  
     3  RUN go version
     4  
     5  # used by coverage utilities
     6  RUN go get golang.org/x/tools/cmd/cover
     7  
     8  # used by go-bindata
     9  RUN go get github.com/jteeuwen/go-bindata
    10  
    11  # used to set the icon when build binaries for windows
    12  RUN go get github.com/akavel/rsrc
    13  
    14  RUN sed -i -e 's/httpredir.debian.org/ftp.us.debian.org/' /etc/apt/sources.list
    15  RUN apt update
    16  
    17  # used in CATs tests and building the binaries
    18  RUN apt install -y jq zip make
    19  
    20  # used in internationalization tests
    21  RUN apt install -y locales
    22  
    23  # install bosh
    24  RUN curl -L https://s3.amazonaws.com/bosh-cli-artifacts/bosh-cli-3.0.1-linux-amd64 --output /usr/local/bin/bosh && chmod 0755 /usr/local/bin/bosh