You've already forked goreleaser
							
							
				mirror of
				https://github.com/goreleaser/goreleaser.git
				synced 2025-10-30 23:58:09 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			540 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			540 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:1.10
 | |
| RUN apt-get update && \
 | |
| 	apt-get install -y rpm git apt-transport-https curl gnupg2 software-properties-common && \
 | |
| 	curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - && \
 | |
| 	add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" && \
 | |
| 	apt-get update && apt-get install -y docker-ce &&\
 | |
| 	rm -rf /var/lib/apt/lists/*
 | |
| COPY goreleaser /bin/goreleaser
 | |
| COPY entrypoint.sh /entrypoint.sh
 | |
| RUN chmod +x /entrypoint.sh
 | |
| ENTRYPOINT ["/entrypoint.sh"]
 | |
| CMD [ "-h" ]
 |