| 12345678910111213141516171819202122232425262728 | FROM alpine:3.10LABEL maintainer "Andre Peters <andre.peters@servercow.de>"RUN apk upgrade --no-cache \  && 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 acme.sh /srv/acme.shCOPY functions.sh /srv/functions.shCOPY obtain-certificate.sh /srv/obtain-certificate.shCOPY reload-configurations.sh /srv/reload-configurations.shCOPY expand6.sh /srv/expand6.shRUN chmod +x /srv/*.shCMD ["/sbin/tini", "-g", "--", "/srv/acme.sh"]
 |