FROM ctrox/csi-s3:dev LABEL maintainers="Cyrill Troxler " LABEL description="csi-s3 testing image" RUN apt-get update && \ apt-get install -y \ git wget make && \ rm -rf /var/lib/apt/lists/* RUN wget -q https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz && \ tar -xf go1.11.5.linux-amd64.tar.gz && \ rm go1.11.5.linux-amd64.tar.gz && \ mv go /usr/local ENV GOROOT /usr/local/go ENV GOPATH /go ENV PATH=$GOPATH/bin:$GOROOT/bin:$PATH RUN go get -u github.com/minio/minio && go install github.com/minio/minio/cmd WORKDIR /app # prewarm go mod cache COPY go.mod . COPY go.sum . RUN go mod download ADD test/test.sh /usr/local/bin ENTRYPOINT ["/usr/local/bin/test.sh"]