Dockerfile 926 B

123456789101112131415161718192021222324252627282930313233
  1. FROM nginxproxymanager/nginx-full:certbot-node
  2. LABEL maintainer="Jamie Curnow <[email protected]>"
  3. # See: https://github.com/just-containers/s6-overlay/blob/master/README.md
  4. ENV SUPPRESS_NO_CONFIG_WARNING=1 \
  5. S6_BEHAVIOUR_IF_STAGE2_FAILS=1 \
  6. S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 \
  7. S6_FIX_ATTRS_HIDDEN=1 \
  8. S6_KILL_FINISH_MAXTIME=10000 \
  9. S6_VERBOSITY=2 \
  10. NODE_OPTIONS="--openssl-legacy-provider"
  11. RUN echo "fs.file-max = 65535" > /etc/sysctl.conf \
  12. && apt-get update \
  13. && apt-get install -y jq python3-pip logrotate \
  14. && apt-get clean \
  15. && rm -rf /var/lib/apt/lists/*
  16. # Task
  17. RUN cd /usr \
  18. && curl -sL https://taskfile.dev/install.sh | sh \
  19. && cd /root
  20. COPY rootfs /
  21. RUN rm -f /etc/nginx/conf.d/production.conf
  22. RUN chmod 644 /etc/logrotate.d/nginx-proxy-manager
  23. # s6 overlay
  24. COPY scripts/install-s6 /tmp/install-s6
  25. RUN /tmp/install-s6 "${TARGETPLATFORM}" && rm -f /tmp/install-s6
  26. EXPOSE 80 81 443
  27. ENTRYPOINT [ "/init" ]