github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/ci/cli-base/Dockerfile (about) 1 FROM golang:latest 2 3 # used by coverage utilities 4 RUN go get golang.org/x/tools/cmd/cover 5 6 # used by go-bindata 7 RUN go get github.com/jteeuwen/go-bindata 8 9 # used to set the icon when build binaries for windows 10 RUN go get github.com/akavel/rsrc 11 12 RUN sed -i -e 's/httpredir.debian.org/ftp.us.debian.org/' /etc/apt/sources.list 13 RUN apt update 14 15 # used in CATs tests 16 RUN apt install -y jq zip 17 18 # used in internationalization tests 19 RUN apt install -y locales 20 21 # install bosh 22 RUN curl -L https://s3.amazonaws.com/bosh-cli-artifacts/bosh-cli-2.0.35-linux-amd64 --output /usr/local/bin/bosh && chmod 0755 /usr/local/bin/bosh