You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			357 B
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			23 lines
		
	
	
		
			357 B
		
	
	
	
		
			Docker
		
	
# syntax=docker/dockerfile-upstream:1.4.3
 | 
						|
 | 
						|
# cert dumper image
 | 
						|
FROM ldez/traefik-certs-dumper
 | 
						|
 | 
						|
ENV TZ Etc/UTC
 | 
						|
ENV LANG C.UTF-8
 | 
						|
 | 
						|
ARG VERSION
 | 
						|
LABEL version=$VERSION
 | 
						|
 | 
						|
RUN set -euxo pipefail \
 | 
						|
  ; apk add --no-cache bash inotify-tools tzdata util-linux
 | 
						|
 | 
						|
COPY run.sh /
 | 
						|
 | 
						|
RUN echo $VERSION >/version
 | 
						|
 | 
						|
VOLUME ["/traefik"]
 | 
						|
VOLUME ["/output"]
 | 
						|
 | 
						|
ENTRYPOINT ["/run.sh"]
 |