Dockerfile 869 B

1234567891011121314151617181920212223242526272829303132
  1. FROM jc21/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. RUN echo "fs.file-max = 65535" > /etc/sysctl.conf \
  11. && apt-get update \
  12. && apt-get install -y jq python3-pip logrotate \
  13. && apt-get clean \
  14. && rm -rf /var/lib/apt/lists/*
  15. # Task
  16. RUN cd /usr \
  17. && curl -sL https://taskfile.dev/install.sh | sh \
  18. && cd /root
  19. COPY rootfs /
  20. RUN rm -f /etc/nginx/conf.d/production.conf
  21. RUN chmod 644 /etc/logrotate.d/nginx-proxy-manager
  22. # s6 overlay
  23. COPY scripts/install-s6 /tmp/install-s6
  24. RUN /tmp/install-s6 "${TARGETPLATFORM}" && rm -f /tmp/install-s6
  25. EXPOSE 80 81 443
  26. ENTRYPOINT [ "/init" ]