Skip to content

Commit

Permalink
IM 7.1.1-13, using tcmalloc
Browse files Browse the repository at this point in the history
  • Loading branch information
dooman87 committed Jul 18, 2023
1 parent cba2a65 commit 6696a9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.bullseye
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:bullseye-slim

ENV DEBIAN_FRONTEND=noninteractive

ARG IM_VERSION=7.1.1-12
ARG IM_VERSION=7.1.1-13
ARG LIB_HEIF_VERSION=1.16.2
ARG LIB_AOM_VERSION=3.6.1
ARG LIB_WEBP_VERSION=1.3.1
Expand All @@ -20,7 +20,7 @@ RUN apt-get -y update && \
# libjxl
libbrotli-dev \
# IM
libpng16-16 libpng-dev libjpeg62-turbo libjpeg62-turbo-dev libgomp1 ghostscript libxml2-dev libxml2-utils libtiff-dev libfontconfig1-dev libfreetype6-dev fonts-dejavu liblcms2-2 liblcms2-dev \
libpng16-16 libpng-dev libjpeg62-turbo libjpeg62-turbo-dev libgomp1 ghostscript libxml2-dev libxml2-utils libtiff-dev libfontconfig1-dev libfreetype6-dev fonts-dejavu liblcms2-2 liblcms2-dev libtcmalloc-minimal4 \
# Install manually to prevent deleting with -dev packages
libxext6 libbrotli1 && \
export CC=clang CXX=clang++ && \
Expand Down Expand Up @@ -59,7 +59,7 @@ RUN apt-get -y update && \
# Building ImageMagick
git clone -b ${IM_VERSION} --depth 1 https://github.com/ImageMagick/ImageMagick.git && \
cd ImageMagick && \
./configure --without-magick-plus-plus --disable-docs --disable-static --with-tiff --with-jxl && \
./configure --without-magick-plus-plus --disable-docs --disable-static --with-tiff --with-jxl --with-tcmalloc && \
make && make install && \
ldconfig /usr/local/lib && \
apt-get remove --autoremove --purge -y make cmake clang clang-11 curl yasm git autoconf automake pkg-config libpng-dev libjpeg62-turbo-dev libde265-dev libx265-dev libxml2-dev libtiff-dev libfontconfig1-dev libfreetype6-dev liblcms2-dev libsdl1.2-dev libgif-dev libbrotli-dev && \
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:focal

ENV DEBIAN_FRONTEND=noninteractive

ARG IM_VERSION=7.1.1-12
ARG IM_VERSION=7.1.1-13
ARG LIB_HEIF_VERSION=1.16.2
ARG LIB_AOM_VERSION=3.6.1
ARG LIB_WEBP_VERSION=1.3.1
Expand All @@ -20,7 +20,7 @@ RUN apt-get -y update && \
# libjxl
libbrotli-dev \
# IM
libpng16-16 libpng-dev libgomp1 ghostscript libxml2-dev libxml2-utils libtiff-dev libfontconfig1-dev libfreetype6-dev fonts-dejavu liblcms2-dev \
libpng16-16 libpng-dev libgomp1 ghostscript libxml2-dev libxml2-utils libtiff-dev libfontconfig1-dev libfreetype6-dev fonts-dejavu liblcms2-dev libtcmalloc-minimal4 \
# Install manually to prevent deleting with -dev packages
libxext6 libbrotli1 && \
# Building libjxl
Expand Down Expand Up @@ -59,7 +59,7 @@ RUN apt-get -y update && \
# Building ImageMagick
git clone -b ${IM_VERSION} --depth 1 https://github.com/ImageMagick/ImageMagick.git && \
cd ImageMagick && \
./configure --without-magick-plus-plus --disable-docs --disable-static --with-tiff --with-jxl && \
./configure --without-magick-plus-plus --disable-docs --disable-static --with-tiff --with-jxl --with-tcmalloc && \
make && make install && \
ldconfig /usr/local/lib && \
apt-get remove --autoremove --purge -y gcc make cmake clang curl g++ yasm git autoconf pkg-config libpng-dev libjpeg-turbo8-dev libde265-dev libx265-dev libxml2-dev libtiff-dev libfontconfig1-dev libfreetype6-dev liblcms2-dev libsdl1.2-dev libgif-dev libbrotli-dev && \
Expand Down

0 comments on commit 6696a9e

Please sign in to comment.