mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +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 \
|
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."
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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 \
|
||||||
|
|
Loading…
Reference in New Issue
Block a user