mirror of
				https://github.com/minio/minio.git
				synced 2025-10-29 15:55:00 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			949 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			949 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:1.10.1-alpine3.7
 | |
| 
 | |
| LABEL maintainer="Minio Inc <dev@minio.io>"
 | |
| 
 | |
| ENV GOPATH /go
 | |
| ENV PATH $PATH:$GOPATH/bin
 | |
| ENV CGO_ENABLED 0
 | |
| ENV MINIO_UPDATE off
 | |
| ENV MINIO_ACCESS_KEY_FILE=access_key \
 | |
|     MINIO_SECRET_KEY_FILE=secret_key
 | |
| 
 | |
| WORKDIR /go/src/github.com/minio/
 | |
| 
 | |
| COPY dockerscripts/docker-entrypoint.sh dockerscripts/healthcheck.sh /usr/bin/
 | |
| 
 | |
| RUN  \
 | |
|      apk add --no-cache ca-certificates curl && \
 | |
|      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/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 ["/usr/bin/docker-entrypoint.sh"]
 | |
| 
 | |
| VOLUME ["/data"]
 | |
| 
 | |
| HEALTHCHECK --interval=30s --timeout=5s \
 | |
|     CMD /usr/bin/healthcheck.sh
 | |
| 
 | |
| CMD ["minio"]
 |