mirror of
				https://github.com/minio/minio.git
				synced 2025-10-30 00:05:02 -04:00 
			
		
		
		
	Refer #4759. Fix this to avoid issues like below ``` docker run --rm minio/minio:edge-armhf version minio: <ERROR> .... is not compiled by Go >= 1.8.3. ... recompile... ```
		
			
				
	
	
		
			27 lines
		
	
	
		
			718 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			718 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.6
 | |
| 
 | |
| MAINTAINER Minio Inc <dev@minio.io>
 | |
|  
 | |
| COPY buildscripts/docker-entrypoint.sh buildscripts/healthcheck.sh /usr/bin/ 
 | |
| 
 | |
| RUN \
 | |
|      apk add --no-cache ca-certificates && \
 | |
|      apk add --no-cache --virtual .build-deps curl && \
 | |
|      echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \
 | |
|      curl https://dl.minio.io/server/minio/release/linux-amd64/minio > /usr/bin/minio && \
 | |
|      chmod +x /usr/bin/minio  && \
 | |
|      chmod +x /usr/bin/docker-entrypoint.sh && \
 | |
|      chmod +x /usr/bin/healthcheck.sh
 | |
| 
 | |
| EXPOSE 9000
 | |
| 
 | |
| ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
 | |
| 
 | |
| VOLUME ["/export"]
 | |
| 
 | |
| HEALTHCHECK --interval=30s --timeout=5s \
 | |
|     CMD /usr/bin/healthcheck.sh
 | |
| 
 | |
| CMD ["minio"]
 | |
| 
 |