From: Sam Saffron Date: Tue, 18 Jun 2019 06:14:38 +0000 (+1000) Subject: DEV: bump dependencies X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6515dc3582309ce58427f57aa1248c3e32877d6e;p=discourse_docker.git DEV: bump dependencies - new ImageMagick - new NGINX moved to stable from mailine - new Redis - new PNG Quant - updated libjemalloc --- diff --git a/image/base/Dockerfile b/image/base/Dockerfile index 2510b7f..83e34a9 100644 --- a/image/base/Dockerfile +++ b/image/base/Dockerfile @@ -60,8 +60,8 @@ RUN mkdir /jemalloc-stable && cd /jemalloc-stable &&\ cd / && rm -rf /jemalloc-stable RUN mkdir /jemalloc-new && cd /jemalloc-new &&\ - wget https://github.com/jemalloc/jemalloc/releases/download/5.1.0/jemalloc-5.1.0.tar.bz2 &&\ - tar -xjf jemalloc-5.1.0.tar.bz2 && cd jemalloc-5.1.0 && ./configure --prefix=/usr --with-install-suffix=5.1.0 && make build_lib && make install_lib &&\ + wget https://github.com/jemalloc/jemalloc/releases/download/5.2.0/jemalloc-5.2.0.tar.bz2 &&\ + tar -xjf jemalloc-5.2.0.tar.bz2 && cd jemalloc-5.2.0 && ./configure --prefix=/usr --with-install-suffix=5.1.0 && make build_lib && make install_lib &&\ cd / && rm -rf /jemalloc-new RUN echo 'gem: --no-document' >> /usr/local/etc/gemrc &&\ diff --git a/image/base/install-imagemagick b/image/base/install-imagemagick index 8326fd8..9a9d30c 100755 --- a/image/base/install-imagemagick +++ b/image/base/install-imagemagick @@ -1,7 +1,7 @@ #!/bin/bash set -o errexit -IMAGE_MAGICK_VERSION="7.0.8-42" +IMAGE_MAGICK_VERSION="7.0.8-49" LIBPNG_VERSION="1.6.37" PREFIX=/usr/local diff --git a/image/base/install-nginx b/image/base/install-nginx index 167d5c5..e54adfa 100755 --- a/image/base/install-nginx +++ b/image/base/install-nginx @@ -1,6 +1,6 @@ #!/bin/bash set -e -VERSION=1.15.12 +VERSION=1.16.0 cd /tmp apt-get install -y autoconf diff --git a/image/base/install-pngquant b/image/base/install-pngquant index e229a44..8030d91 100755 --- a/image/base/install-pngquant +++ b/image/base/install-pngquant @@ -1,5 +1,5 @@ #!/bin/bash -VERSION=2.12.2 +VERSION=2.12.3 cd /tmp git clone -b $VERSION --single-branch https://github.com/pornel/pngquant cd pngquant diff --git a/image/base/install-redis b/image/base/install-redis index d9b322c..e2cc22d 100755 --- a/image/base/install-redis +++ b/image/base/install-redis @@ -1,6 +1,6 @@ #!/bin/bash set -e -REDIS_VERSION=5.0.4 +REDIS_VERSION=5.0.5 cd /tmp