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.
27 lines
648 B
27 lines
648 B
FROM 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
|
|
|
|
COPY buildscripts/docker-entrypoint.sh /usr/bin/
|
|
|
|
RUN chmod +x /usr/bin/docker-entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
|
|
|
|
VOLUME ["/export"]
|
|
|
|
CMD ["minio"]
|
|
|