| 1234567891011121314151617181920 | FROM alpine:3.6LABEL 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 \  tzdataCOPY docker-entrypoint.sh /srv/docker-entrypoint.shCOPY expand6.sh /srv/expand6.shCMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]
 |