| 1234567891011121314151617181920212223242526272829 | FROM nginxproxymanager/nginx-full: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 certbot 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 overlayRUN curl -L -o /tmp/s6-overlay-amd64.tar.gz "https://github.com/just-containers/s6-overlay/releases/download/v1.22.1.0/s6-overlay-amd64.tar.gz" \	&& tar -xzf /tmp/s6-overlay-amd64.tar.gz -C /EXPOSE 80 81 443ENTRYPOINT [ "/init" ]HEALTHCHECK --interval=5s --timeout=3s CMD /bin/check-health
 |