From 7dbc3ce79cbe8819b72c159ad773a89f8ba1ed1e Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Tue, 16 Jan 2018 23:34:50 +0100 Subject: [PATCH] Bugfix letsencrypt (#231) * Update Dockerfile * Update CHANGELOG.md * Update config.json * Update config.json * Update config.json --- letsencrypt/CHANGELOG.md | 3 +++ letsencrypt/Dockerfile | 2 +- letsencrypt/config.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/letsencrypt/CHANGELOG.md b/letsencrypt/CHANGELOG.md index 2578e91..4addce0 100644 --- a/letsencrypt/CHANGELOG.md +++ b/letsencrypt/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 2.1 +- Bugfix wrong python package (py2-future) + ## 2.0 - Update base image - Remove support for TLS-SNI diff --git a/letsencrypt/Dockerfile b/letsencrypt/Dockerfile index a5749c9..ece61e2 100644 --- a/letsencrypt/Dockerfile +++ b/letsencrypt/Dockerfile @@ -5,7 +5,7 @@ FROM $BUILD_FROM ENV LANG C.UTF-8 # Setup base -RUN apk add --no-cache tzdata jq certbot +RUN apk add --no-cache certbot py2-future # Copy data COPY run.sh / diff --git a/letsencrypt/config.json b/letsencrypt/config.json index 3918313..a16d9b7 100644 --- a/letsencrypt/config.json +++ b/letsencrypt/config.json @@ -1,6 +1,6 @@ { "name": "Let's Encrypt", - "version": "2.0", + "version": "2.1", "slug": "letsencrypt", "description": "Manage certificate from Let's Encrypt", "url": "https://home-assistant.io/addons/lets_encrypt/",