You've already forked watchtower
							
							
				mirror of
				https://github.com/containrrr/watchtower.git
				synced 2025-10-31 00:17:44 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			363 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			363 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.9 as alpine
 | |
| 
 | |
| RUN apk add --no-cache \
 | |
|     ca-certificates \
 | |
|     tzdata
 | |
| 
 | |
| FROM scratch
 | |
| LABEL "com.centurylinklabs.watchtower"="true"
 | |
| 
 | |
| COPY --from=alpine \
 | |
|     /etc/ssl/certs/ca-certificates.crt \
 | |
|     /etc/ssl/certs/ca-certificates.crt
 | |
| COPY --from=alpine \
 | |
|     /usr/share/zoneinfo \
 | |
|     /usr/share/zoneinfo
 | |
| 
 | |
| COPY watchtower /
 | |
| ENTRYPOINT ["/watchtower"] |