From d25f32f3d60a53d6bf25907bb8195202a173ab62 Mon Sep 17 00:00:00 2001 From: Rafael dos Santos Silva Date: Wed, 27 Jan 2021 14:09:27 -0300 Subject: [PATCH] Remove gifsicle dependency https://github.com/discourse/discourse/commit/43e52a7dc1d9e610792ff37755d26b1168ecf20d --- image/base/Dockerfile | 3 --- image/base/install-gifsicle | 18 ------------------ 2 files changed, 21 deletions(-) delete mode 100755 image/base/install-gifsicle diff --git a/image/base/Dockerfile b/image/base/Dockerfile index dae8bf0..6f3d5a8 100644 --- a/image/base/Dockerfile +++ b/image/base/Dockerfile @@ -93,9 +93,6 @@ RUN ruby -Eutf-8 -e "v = \`convert -version\`; %w{png tiff jpeg freetype heic}.e ADD install-pngcrush /tmp/install-pngcrush RUN /tmp/install-pngcrush -ADD install-gifsicle /tmp/install-gifsicle -RUN /tmp/install-gifsicle - ADD install-pngquant /tmp/install-pngquant RUN /tmp/install-pngquant diff --git a/image/base/install-gifsicle b/image/base/install-gifsicle deleted file mode 100755 index 8813eff..0000000 --- a/image/base/install-gifsicle +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -set -e - -# version check: https://www.lcdf.org/gifsicle/ -VERSION=1.92 -HASH="5ab556c01d65fddf980749e3ccf50b7fd40de738b6df679999294cc5fabfce65" - -cd /tmp -curl -O http://www.lcdf.org/gifsicle/gifsicle-$VERSION.tar.gz -sha256sum gifsicle-$VERSION.tar.gz -echo "$HASH gifsicle-$VERSION.tar.gz" | sha256sum -c - -tar zxf gifsicle-$VERSION.tar.gz -cd gifsicle-$VERSION -./configure -make install -cd / -rm -fr /tmp/gifsicle* -- 2.25.1