All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			445 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			445 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:1.18.3-alpine AS build
 | |
| 
 | |
| WORKDIR /fastpastebin
 | |
| COPY . .
 | |
| 
 | |
| WORKDIR /fastpastebin/cmd/fastpastebin
 | |
| 
 | |
| RUN CGO_ENABLED=0 go build -tags netgo
 | |
| 
 | |
| FROM alpine:3.16.0
 | |
| LABEL maintainer "Stanislav N. <pztrn@pztrn.name>"
 | |
| 
 | |
| COPY --from=build /fastpastebin/cmd/fastpastebin/fastpastebin /app/fastpastebin
 | |
| COPY docker/fastpastebin.docker.yaml /app/fastpastebin.yaml
 | |
| 
 | |
| EXPOSE 25544
 | |
| ENTRYPOINT [ "/app/fastpastebin", "-config", "/app/fastpastebin.yaml" ]
 |