| 12345678910111213141516171819202122232425262728 | FROM jc21/nginx-full:certbot-nodeLABEL maintainer="Jamie Curnow <[email protected]>"ENV S6_LOGGING=0 \	SUPPRESS_NO_CONFIG_WARNING=1 \	S6_FIX_ATTRS_HIDDEN=1RUN echo "fs.file-max = 65535" > /etc/sysctl.conf \	&& apt-get update \	&& apt-get install -y jq python3-pip logrotate \	&& apt-get clean \	&& rm -rf /var/lib/apt/lists/*# TaskRUN cd /usr \	&& curl -sL https://taskfile.dev/install.sh | sh \	&& cd /rootCOPY rootfs /RUN rm -f /etc/nginx/conf.d/production.confRUN chmod 644 /etc/logrotate.d/nginx-proxy-manager# s6 overlayCOPY scripts/install-s6 /tmp/install-s6RUN /tmp/install-s6 "${TARGETPLATFORM}" && rm -f /tmp/install-s6EXPOSE 80 81 443ENTRYPOINT [ "/init" ]
 |