| 1234567891011121314151617181920212223242526272829 | FROM alpine:3.15LABEL 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 \  py3-pip \  && pip3 install --upgrade pip \  && pip3 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"]
 |