 9fe4437bda
			
		
	
	
	9fe4437bda
	
	
	
		
			
			* Use vendored go-swagger * vendor go-swagger * revert un wanteed change * remove un-needed GO111MODULE * Update Makefile Co-Authored-By: techknowlogick <matti@mdranta.net>
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			264 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			264 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:1.12-alpine3.9 as builder
 | |
| WORKDIR /go/src/github.com/pelletier/go-toml
 | |
| COPY . .
 | |
| ENV CGO_ENABLED=0
 | |
| ENV GOOS=linux
 | |
| RUN go install ./...
 | |
| 
 | |
| FROM scratch
 | |
| COPY --from=builder /go/bin/tomll /usr/bin/tomll
 | |
| COPY --from=builder /go/bin/tomljson /usr/bin/tomljson
 |