From 68ef70f1c7a6676575cb32f80ba5689d762cedc9 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Fri, 28 Dec 2018 20:10:55 -0500 Subject: [PATCH] update telize Signed-off-by: Jess Frazelle --- telize/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/telize/Dockerfile b/telize/Dockerfile index 09d7d0d..5007e58 100644 --- a/telize/Dockerfile +++ b/telize/Dockerfile @@ -175,7 +175,7 @@ STOPSIGNAL SIGTERM EXPOSE 80 443 -ENV TELIZE_VERSION master +ENV TELIZE_VERSION 66063c6c6e5bbbafcf493c5bc7c825f0a6e1b03d RUN set -x \ && apk add --no-cache --virtual .build-deps \ @@ -186,9 +186,10 @@ RUN set -x \ && curl -sSL "http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.tar.gz" | tar -xzf - --strip-components 1 -C /usr/share/GeoIP \ && curl -sSL "http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz" | tar -xzf - --strip-components 1 -C /usr/share/GeoIP \ && curl -sSL "http://geolite.maxmind.com/download/geoip/database/GeoLite2-ASN.tar.gz" | tar -xzf - --strip-components 1 -C /usr/share/GeoIP \ - && git clone --depth 1 --branch "${TELIZE_VERSION}" https://github.com/fcambus/telize.git /usr/src/telize \ + && git clone https://github.com/fcambus/telize.git /usr/src/telize \ && ( \ cd /usr/src/telize \ + && git checkout "$TELIZE_VERSION" \ && cp *.conf /etc/nginx/ \ ) \ && rm -rf /usr/src/telize \