All checks were successful
		
		
	
	ci/woodpecker/push/woodpecker Pipeline was successful
				
			
		
			
				
	
	
		
			10 lines
		
	
	
		
			184 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			184 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:1.25
 | |
| WORKDIR /src
 | |
| COPY . ./
 | |
| RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v .
 | |
| 
 | |
| FROM scratch
 | |
| COPY --from=0 /src/ts-docker-proxy ./
 | |
| ENV HOME=/
 | |
| CMD ["/ts-docker-proxy"]
 |