2023-03-15 05:26:15 +00:00
|
|
|
FROM jc21/nginx-full:certbot-node
|
2020-02-19 04:55:06 +00:00
|
|
|
LABEL maintainer="Jamie Curnow <jc@jc21.com>"
|
|
|
|
|
2021-04-28 22:28:40 +00:00
|
|
|
ENV S6_LOGGING=0 \
|
|
|
|
SUPPRESS_NO_CONFIG_WARNING=1 \
|
|
|
|
S6_FIX_ATTRS_HIDDEN=1
|
2020-02-19 04:55:06 +00:00
|
|
|
|
|
|
|
RUN echo "fs.file-max = 65535" > /etc/sysctl.conf \
|
2021-04-28 22:28:40 +00:00
|
|
|
&& apt-get update \
|
2023-03-16 22:50:32 +00:00
|
|
|
&& apt-get install -y jq python3-pip logrotate \
|
2021-04-28 22:28:40 +00:00
|
|
|
&& apt-get clean \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2020-02-19 04:55:06 +00:00
|
|
|
|
2021-02-07 14:52:37 +00:00
|
|
|
# Task
|
|
|
|
RUN cd /usr \
|
|
|
|
&& curl -sL https://taskfile.dev/install.sh | sh \
|
|
|
|
&& cd /root
|
|
|
|
|
|
|
|
COPY rootfs /
|
|
|
|
RUN rm -f /etc/nginx/conf.d/production.conf
|
2021-05-30 18:19:05 +00:00
|
|
|
RUN chmod 644 /etc/logrotate.d/nginx-proxy-manager
|
2021-02-07 14:52:37 +00:00
|
|
|
|
2020-02-19 04:55:06 +00:00
|
|
|
# s6 overlay
|
2023-03-16 22:50:32 +00:00
|
|
|
COPY scripts/install-s6 /tmp/install-s6
|
|
|
|
RUN /tmp/install-s6 "${TARGETPLATFORM}" && rm -f /tmp/install-s6
|
2020-02-19 04:55:06 +00:00
|
|
|
|
2021-04-28 22:28:40 +00:00
|
|
|
EXPOSE 80 81 443
|
2021-02-07 14:52:37 +00:00
|
|
|
ENTRYPOINT [ "/init" ]
|