All checks were successful
		
		
	
	ci/woodpecker/push/woodpecker Pipeline was successful
				
			
		
			
				
	
	
		
			13 lines
		
	
	
		
			347 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			347 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:alpine AS builder
 | |
| WORKDIR /src
 | |
| COPY go.mod .
 | |
| COPY go.sum .
 | |
| RUN go mod download
 | |
| COPY . .
 | |
| RUN go build -o gpaste ./cmd/client/client.go
 | |
| RUN go build -o gpaste-server ./cmd/server/server.go
 | |
| 
 | |
| FROM alpine:latest
 | |
| COPY --from=builder /src/gpaste /bin/gpaste
 | |
| COPY --from=builder /src/gpaste-server /bin/gpaste-server
 | |
| CMD ["/bin/gpaste-server"] |