21 lines
		
	
	
		
			373 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			373 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.8
 | 
						|
 | 
						|
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
 | 
						|
 | 
						|
RUN apk add --update --no-cache \
 | 
						|
  bash \
 | 
						|
  acme-client \
 | 
						|
  curl \
 | 
						|
  openssl \
 | 
						|
  bind-tools \
 | 
						|
  jq \
 | 
						|
  mariadb-client \
 | 
						|
  redis \
 | 
						|
  tini \
 | 
						|
  tzdata
 | 
						|
 | 
						|
COPY docker-entrypoint.sh /srv/docker-entrypoint.sh
 | 
						|
COPY expand6.sh /srv/expand6.sh
 | 
						|
 | 
						|
CMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]
 |