mirror of
				https://github.com/SourceFellows/gobuch.git
				synced 2025-11-04 07:36:19 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			147 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			147 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
from golang:latest
 | 
						|
 | 
						|
RUN mkdir /application
 | 
						|
ADD . /application
 | 
						|
WORKDIR /application
 | 
						|
RUN go build -o application .
 | 
						|
 | 
						|
CMD ["/application/application"]
 |