update versions

Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
This commit is contained in:
Jess Frazelle 2019-09-16 17:41:08 -07:00
parent 8c34baddef
commit 609aceb5b2
No known key found for this signature in database
GPG Key ID: C0B444E6A3EFD4C1
3 changed files with 14 additions and 28 deletions

View File

@ -3,41 +3,27 @@ LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apk --no-cache add \ RUN apk --no-cache add \
bash \ bash \
python \ libffi \
py-cffi \ libressl \
py-configargparse \ python3
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
RUN pip install acme ENV CERTBOT_VERSION 0.38.0
ENV CERTBOT_VERSION 0.35.1
RUN buildDeps=' \ RUN buildDeps=' \
build-base \
git \ git \
libffi-dev \
libressl-dev \
python3-dev \
py3-pip \
' \ ' \
set -x \ set -x \
&& apk --no-cache add $buildDeps \ && apk --no-cache add $buildDeps \
&& pip3 install acme \
&& git clone --depth 1 --branch "v$CERTBOT_VERSION" https://github.com/certbot/certbot /usr/src/certbot \ && git clone --depth 1 --branch "v$CERTBOT_VERSION" https://github.com/certbot/certbot /usr/src/certbot \
&& cd /usr/src/certbot \ && cd /usr/src/certbot \
&& python2 setup.py build || return 1 \ && python3 setup.py build || return 1 \
&& python2 setup.py install --prefix=/usr || return 1 \ && python3 setup.py install --prefix=/usr || return 1 \
&& rm -rf /usr/src/certbot \ && rm -rf /usr/src/certbot \
&& apk del $buildDeps \ && apk del $buildDeps \
&& echo "Build complete." && echo "Build complete."

View File

@ -10,7 +10,7 @@ RUN apk --no-cache add \
git \ git \
make 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 RUN git clone --depth 1 --branch ${COREDNS_VERSION} https://github.com/coredns/coredns /go/src/github.com/coredns/coredns

View File

@ -88,7 +88,7 @@ RUN apt-get update && apt-get install -y \
# unifi version # unifi version
# From: https://www.ubnt.com/download/unifi/ # From: https://www.ubnt.com/download/unifi/
ENV UNIFI_VERSION "5.11.39" ENV UNIFI_VERSION "5.11.46"
# install unifi # install unifi
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \