2014-11-07 01:34:27 +01:00
FROM debian:jessie
2014-09-15 19:31:14 +02:00
2016-05-23 23:29:30 +02:00
# persistent / runtime deps
ENV PHPIZE_DEPS \
2016-03-18 18:52:43 +01:00
autoconf \
file \
g++ \
gcc \
libc-dev \
make \
pkg-config \
2016-05-23 23:29:30 +02:00
re2c
2016-03-18 18:52:43 +01:00
RUN apt-get update && apt-get install -y \
2016-05-23 23:29:30 +02:00
$PHPIZE_DEPS \
2016-03-18 18:52:43 +01:00
ca-certificates \
curl \
libedit2 \
libsqlite3-0 \
libxml2 \
--no-install-recommends && rm -r /var/lib/apt/lists/*
2014-11-10 21:13:21 +01:00
ENV PHP_INI_DIR /usr/local/etc/php
RUN mkdir -p $PHP_INI_DIR /conf.d
2014-11-07 01:34:27 +01:00
##<autogenerated>##
##</autogenerated>##
2014-08-27 23:18:39 +02:00
2015-08-07 21:01:25 +02:00
ENV GPG_KEYS 0BD78B5F97500D450838F95DFE857D9A90D90EC1 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3
2014-08-27 23:18:39 +02:00
2016-04-29 17:28:28 +02:00
ENV PHP_VERSION 5.6.21
ENV PHP_FILENAME php-5.6.21.tar.xz
ENV PHP_SHA256 566ff1a486cb0485ed477a91ea292423f77a58671270ff73b74e67e3ce7084f9
2014-08-27 23:18:39 +02:00
2016-03-18 18:52:43 +01:00
RUN set -xe \
&& buildDeps = " \
2014-11-07 01:34:27 +01:00
$PHP_EXTRA_BUILD_DEPS \
libcurl4-openssl-dev \
2016-03-18 18:52:43 +01:00
libedit-dev \
2015-04-18 04:48:36 +02:00
libsqlite3-dev \
2014-11-07 01:34:27 +01:00
libssl-dev \
libxml2-dev \
2015-06-30 01:47:09 +02:00
xz-utils \
2015-04-01 21:37:01 +02:00
" \
2014-11-07 01:34:27 +01:00
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* \
2015-12-09 01:55:23 +01: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-03-18 18:52:43 +01:00
&& export GNUPGHOME = " $( mktemp -d) " \
&& for key in $GPG_KEYS ; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys " $key " ; \
done \
2016-02-29 17:38:54 +01:00
&& gpg --batch --verify " $PHP_FILENAME .asc " " $PHP_FILENAME " \
2016-03-18 18:52:43 +01:00
&& rm -r " $GNUPGHOME " " $PHP_FILENAME .asc " \
2014-08-27 23:18:39 +02:00
&& mkdir -p /usr/src/php \
2015-12-09 01:55:23 +01:00
&& tar -xf " $PHP_FILENAME " -C /usr/src/php --strip-components= 1 \
2016-03-18 18:52:43 +01:00
&& rm " $PHP_FILENAME " \
2014-08-27 23:18:39 +02:00
&& cd /usr/src/php \
2014-11-10 21:13:21 +01:00
&& ./configure \
--with-config-file-path= " $PHP_INI_DIR " \
--with-config-file-scan-dir= " $PHP_INI_DIR /conf.d " \
2014-11-07 01:34:27 +01:00
$PHP_EXTRA_CONFIGURE_ARGS \
2014-11-10 21:13:21 +01:00
--disable-cgi \
2016-03-18 18:52:43 +01:00
# --enable-mysqlnd is included here because it's harder to compile after the fact than extensions are (since it's a plugin for several extensions, not an extension in itself)
2014-11-11 21:17:28 +01:00
--enable-mysqlnd \
2016-03-30 18:07:32 +02:00
# --enable-mbstring is included here because otherwise there's no way to get pecl to use it properly (see https://github.com/docker-library/php/issues/195)
--enable-mbstring \
2014-10-24 23:33:21 +02:00
--with-curl \
2016-03-18 18:52:43 +01:00
--with-libedit \
2014-10-10 22:54:35 +02:00
--with-openssl \
2014-11-03 19:07:14 +01:00
--with-zlib \
2014-08-27 23:18:39 +02:00
&& make -j" $( nproc) " \
&& make install \
2014-11-07 01:34:27 +01:00
&& { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } \
2016-03-18 18:52:43 +01:00
&& make clean \
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant= false -o APT::AutoRemove::SuggestsImportant= false $buildDeps
2014-09-03 19:56:55 +02:00
2014-11-11 21:17:28 +01:00
COPY docker-php-ext-* /usr/local/bin/
2014-11-07 01:34:27 +01:00
##<autogenerated>##
2014-09-03 19:56:55 +02:00
CMD [ "php" , "-a" ]
2014-11-07 01:34:27 +01:00
##</autogenerated>##