mirror of
				https://github.com/minio/minio.git
				synced 2025-10-30 00:05:02 -04:00 
			
		
		
		
	This commit changes the container base image from ubi-minimal to ubi-micro. The docker build process happens now in two stages. The build stage: - downloads the latest CA certificate bundle - downloads MinIO binary (for requested version/os/arch) - downloads MinIO binary signature and verifies it using minisign Then it creates an image based on ubi-micro with just the minio binary was downloaded and verified during the build stage. The build stage is simplified to just verifying the minisign signature. Signed-off-by: Andreas Auernhammer <github@aead.dev>
		
			
				
	
	
		
			11 lines
		
	
	
		
			202 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			202 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM minio/minio:latest
 | |
| 
 | |
| COPY ./minio /usr/bin/minio
 | |
| COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
 | |
| 
 | |
| ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
 | |
| 
 | |
| VOLUME ["/data"]
 | |
| 
 | |
| CMD ["minio"]
 |