You've already forked goreleaser
							
							
				mirror of
				https://github.com/goreleaser/goreleaser.git
				synced 2025-10-30 23:58:09 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			445 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			445 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:1.16-alpine
 | |
| 
 | |
| RUN apk add --no-cache bash \
 | |
|                        curl \
 | |
|                        docker-cli \
 | |
|                        git \
 | |
|                        mercurial \
 | |
|                        make \
 | |
|                        build-base
 | |
| 
 | |
| ENTRYPOINT ["/entrypoint.sh"]
 | |
| CMD [ "-h" ]
 | |
| 
 | |
| COPY scripts/entrypoint.sh /entrypoint.sh
 | |
| RUN chmod +x /entrypoint.sh
 | |
| 
 | |
| COPY goreleaser_*.apk /tmp/
 | |
| RUN apk add --allow-untrusted /tmp/goreleaser_*.apk
 |