12 lines
		
	
	
		
			No EOL
		
	
	
		
			635 B
		
	
	
	
		
			Docker
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			No EOL
		
	
	
		
			635 B
		
	
	
	
		
			Docker
		
	
	
		
			Executable file
		
	
	
	
	
| FROM golang@sha256:cee6f4b901543e8e3f20da3a4f7caac6ea643fd5a46201c3c2387183a332d989 AS builder
 | |
| RUN apk update && apk add --no-cache git make ca-certificates && update-ca-certificates
 | |
| COPY main.go /go/src/github.com/iMartyn/karaokards/
 | |
| RUN cd /go/src/github.com/iMartyn/karaokards/; go get; CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o karaokards .
 | |
| #RUN ls /go/src/github.com/karaokards/ -l
 | |
| 
 | |
| 
 | |
| FROM scratch
 | |
| COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
 | |
| COPY --from=builder /go/src/github.com/iMartyn/karaokards/karaokards /app/
 | |
| COPY strings.json /app/strings.json
 | |
| CMD ["/app/karaokards"] |