You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
527 B
20 lines
527 B
8 years ago
|
FROM resin/aarch64-alpine:3.5
|
||
|
|
||
|
ENV GOPATH /go
|
||
|
ENV PATH $PATH:$GOPATH/bin
|
||
|
ENV CGO_ENABLED 0
|
||
|
|
||
|
WORKDIR /go/src/github.com/minio/
|
||
|
|
||
|
RUN \
|
||
|
apk add --no-cache ca-certificates && \
|
||
|
apk add --no-cache --virtual .build-deps git go musl-dev && \
|
||
|
go get -v -d github.com/minio/minio && \
|
||
|
cd /go/src/github.com/minio/minio && \
|
||
|
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \
|
||
|
rm -rf /go/pkg /go/src /usr/local/go && apk del .build-deps
|
||
|
|
||
|
EXPOSE 9000
|
||
|
ENTRYPOINT ["minio"]
|
||
|
VOLUME ["/export"]
|