2014-11-06 17:34:27 -07:00
FROM debian:jessie
2014-09-15 11:31:14 -06:00
2014-11-06 17:34:27 -07:00
# persistent / runtime deps
2015-10-09 10:38:50 -03:00
RUN apt-get update && apt-get install -y ca-certificates curl librecode0 libsqlite3-0 libxml2 --no-install-recommends && rm -r /var/lib/apt/lists/*
2014-09-15 11:31:14 -06:00
2014-11-10 13:13:21 -07:00
# phpize deps
2015-05-19 15:48:24 -07:00
RUN apt-get update && apt-get install -y autoconf file g++ gcc libc-dev make pkg-config re2c --no-install-recommends && rm -r /var/lib/apt/lists/*
2014-11-10 13:13:21 -07:00
ENV PHP_INI_DIR /usr/local/etc/php
RUN mkdir -p $PHP_INI_DIR /conf.d
2014-11-06 17:34:27 -07:00
##<autogenerated>##
##</autogenerated>##
2014-08-27 15:18:39 -06:00
2015-08-07 12:01:25 -07:00
ENV GPG_KEYS 0BD78B5F97500D450838F95DFE857D9A90D90EC1 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3
2015-04-22 13:21:14 -07:00
RUN set -xe \
&& for key in $GPG_KEYS ; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys " $key " ; \
done
2014-08-27 15:18:39 -06:00
2016-03-04 22:04:34 +09:00
ENV PHP_VERSION 5.6.19
ENV PHP_FILENAME php-5.6.19.tar.xz
ENV PHP_SHA256 bb32337f93a00b71789f116bddafa8848139120e7fb6f4f98a84f52dbcb8329f
2014-08-27 15:18:39 -06:00
2014-11-11 13:17:28 -07:00
# --enable-mysqlnd is included below because it's harder to compile after the fact the extensions are (since it's a plugin for several extensions, not an extension in itself)
2014-11-06 17:34:27 -07:00
RUN buildDeps = " \
$PHP_EXTRA_BUILD_DEPS \
libcurl4-openssl-dev \
libreadline6-dev \
2015-04-17 19:48:36 -07:00
librecode-dev \
libsqlite3-dev \
2014-11-06 17:34:27 -07:00
libssl-dev \
libxml2-dev \
2015-06-29 16:47:09 -07:00
xz-utils \
2015-04-01 13:37:01 -06:00
" \
&& set -x \
2014-11-06 17:34:27 -07:00
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* \
2015-12-08 16:55:23 -08:00
&& curl -fSL " http://php.net/get/ $PHP_FILENAME /from/this/mirror " -o " $PHP_FILENAME " \
&& echo " $PHP_SHA256 * $PHP_FILENAME " | sha256sum -c - \
&& curl -fSL " http://php.net/get/ $PHP_FILENAME .asc/from/this/mirror " -o " $PHP_FILENAME .asc " \
2016-02-29 08:38:54 -08:00
&& gpg --batch --verify " $PHP_FILENAME .asc " " $PHP_FILENAME " \
2014-08-27 15:18:39 -06:00
&& mkdir -p /usr/src/php \
2015-12-08 16:55:23 -08:00
&& tar -xf " $PHP_FILENAME " -C /usr/src/php --strip-components= 1 \
&& rm " $PHP_FILENAME " * \
2014-08-27 15:18:39 -06:00
&& cd /usr/src/php \
2014-11-10 13:13:21 -07:00
&& ./configure \
--with-config-file-path= " $PHP_INI_DIR " \
--with-config-file-scan-dir= " $PHP_INI_DIR /conf.d " \
2014-11-06 17:34:27 -07:00
$PHP_EXTRA_CONFIGURE_ARGS \
2014-11-10 13:13:21 -07:00
--disable-cgi \
2014-11-11 13:17:28 -07:00
--enable-mysqlnd \
2014-10-24 15:33:21 -06:00
--with-curl \
2014-10-10 22:54:35 +02:00
--with-openssl \
2014-11-06 17:34:27 -07:00
--with-readline \
2015-04-17 19:48:36 -07:00
--with-recode \
2014-11-03 10:07:14 -08:00
--with-zlib \
2014-08-27 15:18:39 -06:00
&& make -j" $( nproc) " \
&& make install \
2014-11-06 17:34:27 -07:00
&& { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } \
2015-03-01 09:02:45 -08:00
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant= false -o APT::AutoRemove::SuggestsImportant= false $buildDeps \
2014-11-10 13:13:21 -07:00
&& make clean
2014-09-03 11:56:55 -06:00
2014-11-11 13:17:28 -07:00
COPY docker-php-ext-* /usr/local/bin/
2014-11-06 17:34:27 -07:00
##<autogenerated>##
2014-09-03 11:56:55 -06:00
CMD [ "php" , "-a" ]
2014-11-06 17:34:27 -07:00
##</autogenerated>##