From 0ec07a02f3ae6f20cef8057192757bf6e09e10a2 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Tue, 14 Nov 2017 22:54:23 +0100 Subject: [PATCH] Correct "optional" dependencies breaking up the lexicon runtime. Add all optional dependencies by the way. --- Dockerfile | 6 +++++- README.md | 2 +- VERSION | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 00873184..f4bfc2a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,11 @@ ENV CERTS_GROUP_OWNER root RUN apk --no-cache --update add rsyslog git openssl libffi supervisor docker \ && apk --no-cache --update --virtual build-dependencies add libffi-dev openssl-dev python-dev build-base \ && pip install "certbot==$CERTBOT_VERSION" \ -&& pip install requests[security] "dns-lexicon==$LEXICON_VERSION" \ +&& pip install "dns-lexicon==$LEXICON_VERSION" \ +&& pip install "dns-lexicon[route53]==$LEXICON_VERSION" \ +&& pip install "dns-lexicon[softlayer]==$LEXICON_VERSION" \ +&& pip install "dns-lexicon[transip]==$LEXICON_VERSION" \ +&& pip install "dns-lexicon[dnsmadeeasy]==$LEXICON_VERSION" \ && mkdir -p /var/lib/letsencrypt/hooks \ && mkdir -p /etc/supervisord.d \ && apk del build-dependencies diff --git a/README.md b/README.md index 668ffec1..afcec3cd 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # adferrand/letsencrypt-dns -![](https://img.shields.io/badge/tags-latest-lightgrey.svg) [![](https://images.microbadger.com/badges/version/adferrand/letsencrypt-dns:1.4.1.svg) ![](https://images.microbadger.com/badges/image/adferrand/letsencrypt-dns:1.4.1.svg)](https://microbadger.com/images/adferrand/letsencrypt-dns:1.4.1) +![](https://img.shields.io/badge/tags-latest-lightgrey.svg) [![](https://images.microbadger.com/badges/version/adferrand/letsencrypt-dns:1.4.2.svg) ![](https://images.microbadger.com/badges/image/adferrand/letsencrypt-dns:1.4.2.svg)](https://microbadger.com/images/adferrand/letsencrypt-dns:1.4.2) * [Container functionalities](#container-functionalities) * [Why use this Docker](#why-use-this-docker-) diff --git a/VERSION b/VERSION index 13175fdc..c9929e36 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.1 \ No newline at end of file +1.4.2 \ No newline at end of file