File tree Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change 11FROM php:7.1-apache
22LABEL author=
"Devin Matte <[email protected] >" 33
4+ RUN echo "deb-src http://deb.debian.org/debian buster main" >> /etc/apt/sources.list
5+
46RUN apt-get -yq update && \
5- apt-get -yq install gnupg libmagickwand-dev git gcc make autoconf libc-dev pkg-config --no-install-recommends
7+ apt-get -yq install \
8+ gnupg \
9+ libmagickwand-dev \
10+ git \
11+ gcc \
12+ make \
13+ autoconf \
14+ libc-dev \
15+ pkg-config \
16+ build-essential \
17+ libx11-dev \
18+ libxext-dev \
19+ zlib1g-dev \
20+ libpng-dev \
21+ libjpeg-dev \
22+ libfreetype6-dev \
23+ libxml2-dev \
24+ wget \
25+ --no-install-recommends
26+
27+ RUN apt-get -yq build-dep imagemagick
28+
29+ RUN wget https://github.com/ImageMagick/ImageMagick6/archive/6.9.11-22.tar.gz && \
30+ tar -xzvf 6.9.11-22.tar.gz && \
31+ cd ImageMagick6-6.9.11-22 && \
32+ ./configure && \
33+ make && \
34+ make install && \
35+ ldconfig /usr/local/lib && \
36+ make check
637
738RUN docker-php-ext-install mysqli && \
839 yes '' | pecl install imagick && docker-php-ext-enable imagick
You can’t perform that action at this time.
0 commit comments