| 12345678910111213141516171819202122 | FROM alpine:3.9LABEL maintainer "Andre Peters <andre.peters@servercow.de>"RUN apk add --update --no-cache \  bash \  curl \  openssl \  bind-tools \  jq \  mariadb-client \  redis \  tini \  tzdata \  python3 \  && python3 -m pip install --upgrade pip \  && python3 -m pip install acme-tinyCOPY docker-entrypoint.sh /srv/docker-entrypoint.shCOPY expand6.sh /srv/expand6.shCMD ["/sbin/tini", "-g", "--", "/srv/docker-entrypoint.sh"]
 |