mirror of
https://github.com/minio/mc.git
synced 2026-01-04 02:44:40 +03:00
minio server simplified its build system, this change borrows the same technique to `mc` as well. This PR fixes build messages and overall behavior of our builds on travis and appveyor.
20 lines
590 B
Docker
20 lines
590 B
Docker
FROM golang:1.10.1-alpine3.7
|
|
|
|
MAINTAINER Minio Inc <dev@minio.io>
|
|
|
|
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 && \
|
|
echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \
|
|
go get -v -d github.com/minio/mc && \
|
|
cd /go/src/github.com/minio/mc && \
|
|
go install -v -ldflags "$(go run buildscripts/gen-ldflags.go)" && \
|
|
rm -rf /go/pkg /go/src /usr/local/go && apk del .build-deps
|
|
|
|
ENTRYPOINT ["mc"]
|