19 lines
		
	
	
		
			646 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			646 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # builder
 | |
| FROM    golang:1.15-alpine as builder
 | |
| RUN     apk --no-cache add make git go rsync libc-dev
 | |
| RUN     go get -u golang.org/x/tools/cmd/goimports
 | |
| RUN     go get -u github.com/gobuffalo/packr/v2/packr2
 | |
| COPY    . /go/src/moul.io/protoc-gen-gotemplate
 | |
| WORKDIR /go/src/moul.io/protoc-gen-gotemplate
 | |
| RUN     packr2
 | |
| RUN     go install -a -tags netgo -ldflags '-w -extldflags "-static"' . ./cmd/web-editor
 | |
| RUN     ls -la /go/bin
 | |
| 
 | |
| # runtime
 | |
| FROM    znly/protoc:0.4.0
 | |
| COPY    --from=builder  /go/bin/web-editor            /go/bin/
 | |
| COPY    --from=builder  /go/bin/protoc-gen-gotemplate /go/bin/
 | |
| ENV     PATH=$PATH:/go/bin
 | |
| EXPOSE  8080
 | |
| ENTRYPOINT []
 |