mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
update versions
Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
This commit is contained in:
parent
8c34baddef
commit
609aceb5b2
|
@ -3,41 +3,27 @@ LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|||
|
||||
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."
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue
Block a user