This repository has been archived by the owner on Jul 20, 2022. It is now read-only.
generated from homecentr/docker-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): bump homecentr/cron-base from 1.2.0 to 1.2.1 (#7)
- Loading branch information
1 parent
c577361
commit 66c6019
Showing
1 changed file
with
33 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,47 @@ | ||
FROM certbot/certbot:v1.5.0 as certbot | ||
|
||
FROM homecentr/cron-base:1.2.0 | ||
|
||
ARG CERTBOT_PIP_VERSION="1.4.0" | ||
FROM homecentr/cron-base:1.2.1 | ||
ARG CERTBOT_PIP_VERSION="1.5.0" | ||
|
||
ENV CERTBOT_ARGS="" | ||
ENV CRON_SCHEDULE="30 * * * *" | ||
ENV S6_BEHAVIOUR_IF_STAGE2_FAILS=2 | ||
|
||
COPY --from=certbot /usr/local/bin/certbot /usr/local/bin/certbot | ||
|
||
RUN apk add --no-cache python3=3.8.2-r0 && \ | ||
RUN apk add --no-cache \ | ||
python3=3.8.3-r0 \ | ||
# Required from Certbot version 1.5.0 | ||
py3-six=1.15.0-r0 \ | ||
py3-requests=2.23.0-r0 \ | ||
py3-distro=1.5.0-r1 && \ | ||
apk add --no-cache --virtual deps \ | ||
python3-dev=3.8.2-r0 \ | ||
gcc=9.2.0-r4 \ | ||
libffi-dev=3.2.1-r6 \ | ||
python3-dev=3.8.3-r0 \ | ||
py3-pip=20.1.1-r0 \ | ||
gcc=9.3.0-r2 \ | ||
libffi-dev=3.3-r2 \ | ||
openssl-dev=1.1.1g-r0 \ | ||
musl-dev=1.1.24-r2 && \ | ||
pip3 install --upgrade pip==20.1.1 && \ | ||
pip3 install \ | ||
setuptools==46.4.0 \ | ||
acme==${CERTBOT_PIP_VERSION} \ | ||
certbot==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-cloudflare==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-cloudxns==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-digitalocean==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-dnsimple==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-dnsmadeeasy==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-google==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-linode==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-luadns==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-nsone==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-ovh==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-rfc2136==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-route53==${CERTBOT_PIP_VERSION} && \ | ||
apk del deps | ||
musl-dev=1.1.24-r9 &&\ | ||
pip3 install --upgrade pip==20.1.1 && \ | ||
pip3 install \ | ||
setuptools==47.3.1 \ | ||
acme==${CERTBOT_PIP_VERSION} \ | ||
certbot==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-cloudflare==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-cloudxns==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-digitalocean==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-dnsimple==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-dnsmadeeasy==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-google==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-linode==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-luadns==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-nsone==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-ovh==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-rfc2136==${CERTBOT_PIP_VERSION} \ | ||
certbot-dns-route53==${CERTBOT_PIP_VERSION} && \ | ||
apk del deps | ||
|
||
COPY ./fs/ / | ||
|
||
VOLUME "/etc/letsnecrypt" | ||
VOLUME "/etc/letsencrypt" |