Dockerfile: Also install minio

This commit is contained in:
Alexander Neumann 2015-12-19 17:21:35 +01:00
parent fa7192fdfb
commit 8562a1bb2f
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,7 @@ ARG GOARCH=amd64
# install dependencies
RUN apt-get update
RUN apt-get install -y --no-install-recommends ca-certificates wget git
RUN apt-get install -y --no-install-recommends ca-certificates wget git build-essential
# download and install Go
RUN wget -q -O /tmp/go.tar.gz https://storage.googleapis.com/golang/go${GOVERSION}.linux-${GOARCH}.tar.gz
@ -47,6 +47,7 @@ RUN mkdir -p $GOPATH/src/github.com/restic/restic
RUN go get golang.org/x/tools/cmd/cover
RUN go get github.com/mattn/goveralls
RUN go get github.com/mitchellh/gox
RUN GO15VENDOREXPERIMENT=1 go get github.com/minio/minio
# set TRAVIS_BUILD_DIR for integration script
ENV TRAVIS_BUILD_DIR $GOPATH/src/github.com/restic/restic