10 lines
		
	
	
	
		
			210 B
		
	
	
	
		
			Docker
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			210 B
		
	
	
	
		
			Docker
		
	
	
		
			Executable file
		
	
	
	
	
| FROM golang:1.13-alpine AS build
 | |
| WORKDIR /go/src/github.com/org/repo
 | |
| COPY . .
 | |
| 
 | |
| RUN go build -o server .
 | |
| 
 | |
| FROM alpine:3.7
 | |
| EXPOSE 8000
 | |
| COPY --from=build /go/src/github.com/org/repo/server /server
 | |
| CMD ["/server"]
 |