From 609aceb5b2fc322156a1bffa722769e8fa6a666a Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Mon, 16 Sep 2019 17:41:08 -0700 Subject: [PATCH] update versions Signed-off-by: Jess Frazelle --- certbot/Dockerfile | 38 ++++++++++++-------------------------- coredns/Dockerfile | 2 +- unifi/Dockerfile | 2 +- 3 files changed, 14 insertions(+), 28 deletions(-) diff --git a/certbot/Dockerfile b/certbot/Dockerfile index 80a91ca..90ff0fb 100644 --- a/certbot/Dockerfile +++ b/certbot/Dockerfile @@ -3,41 +3,27 @@ LABEL maintainer "Jessie Frazelle " RUN apk --no-cache add \ bash \ - python \ - py-cffi \ - py-configargparse \ - py-configobj \ - py-cryptography \ - py-dialog \ - py-enum34 \ - py-idna \ - py-ipaddress \ - py-mock \ - py-openssl \ - py-parsedatetime \ - py2-pip \ - py-requests \ - py-rfc3339 \ - py-setuptools \ - py-six \ - py-tz \ - py-zope-component \ - py-zope-event \ - py-zope-interface + libffi \ + libressl \ + python3 -RUN pip install acme - -ENV CERTBOT_VERSION 0.35.1 +ENV CERTBOT_VERSION 0.38.0 RUN buildDeps=' \ + build-base \ git \ + libffi-dev \ + libressl-dev \ + python3-dev \ + py3-pip \ ' \ set -x \ && apk --no-cache add $buildDeps \ + && pip3 install acme \ && git clone --depth 1 --branch "v$CERTBOT_VERSION" https://github.com/certbot/certbot /usr/src/certbot \ && cd /usr/src/certbot \ - && python2 setup.py build || return 1 \ - && python2 setup.py install --prefix=/usr || return 1 \ + && python3 setup.py build || return 1 \ + && python3 setup.py install --prefix=/usr || return 1 \ && rm -rf /usr/src/certbot \ && apk del $buildDeps \ && echo "Build complete." diff --git a/coredns/Dockerfile b/coredns/Dockerfile index 2c99c62..a8139e0 100644 --- a/coredns/Dockerfile +++ b/coredns/Dockerfile @@ -10,7 +10,7 @@ RUN apk --no-cache add \ git \ make -ENV COREDNS_VERSION v1.6.2 +ENV COREDNS_VERSION v1.6.3 RUN git clone --depth 1 --branch ${COREDNS_VERSION} https://github.com/coredns/coredns /go/src/github.com/coredns/coredns diff --git a/unifi/Dockerfile b/unifi/Dockerfile index bda4c21..777b961 100644 --- a/unifi/Dockerfile +++ b/unifi/Dockerfile @@ -88,7 +88,7 @@ RUN apt-get update && apt-get install -y \ # unifi version # From: https://www.ubnt.com/download/unifi/ -ENV UNIFI_VERSION "5.11.39" +ENV UNIFI_VERSION "5.11.46" # install unifi RUN apt-get update && apt-get install -y \