mirror of
				https://github.com/SourceFellows/gobuch.git
				synced 2025-11-04 15:46:17 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			99 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			99 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM golang:latest
 | 
						|
 | 
						|
COPY main.go /app/main.go
 | 
						|
WORKDIR /app
 | 
						|
RUN go build main.go
 | 
						|
 | 
						|
CMD [ "/app/main"] |