Hướng dẫn bin sh 1 php not found docker - bin sh 1 php không tìm thấy docker

Bạn chỉ có thể có một hình ảnh cơ sở bằng cách sử dụng FROM trong Dockerfile. Về cơ bản, điều đó nói với Docker những gì cần bắt đầu. Trong trường hợp của bạn, bạn có một số FROM, vì vậy có vẻ như Docker chỉ cần lấy cái cuối cùng bạn đưa ra, trong trường hợp này là node:8. Vì vậy, PHP không bao giờ được cài đặt.

Để khắc phục sự cố này, bạn sẽ cần chọn một hình ảnh cơ sở duy nhất (ví dụ PHP) và cài đặt các phụ thuộc khác của bạn lên trên đó, để bạn có thể cài đặt nginx và nút theo cách thủ công trên hình ảnh PHP bằng cách sử dụng RUN. Bạn cũng có thể muốn xem xét việc xây dựng một hình ảnh nginx riêng biệt. Đây được coi là thực hành tốt để tách dịch vụ của bạn thành các hình ảnh khác nhau khi có thể.

Ngoài ra, thay vì sử dụng nhiều mục CMD, hãy sử dụng tập lệnh shell khởi động nhỏ. Ví dụ

#!/usr/bin/env bash
set -e
php artisan migrate:fresh --seed
php artisan config:cache
php artisan route:cache
exec php artisan serve --host=0.0.0.0 --port=436

Đặt nó vào một tập lệnh gọi là start.sh hoặc một cái gì đó tương tự, sau đó trong Dockerfile của bạn, sử dụng

CMD ["./start.sh"]

Sau đó, có lẽ bạn cũng sẽ muốn bắt đầu một thùng chứa thứ hai cho dịch vụ NGINX của bạn. Bạn có thể làm điều này bằng tay bằng cách sử dụng Docker Run, nhưng tôi khuyên bạn nên kiểm tra Docker-Compose. Nó giúp bạn xây dựng và chạy nhiều container cùng một lúc.

Đầu ra ví dụ bị cắt ngắn, hiển thị điều này hoạt động trên hộp của tôi:

$ ls -l 7.1/fpm/
total 32
drwxrwxr-x 2 tianon tianon 4096 Jun 13 09:43 alpine
-rw-rw-r-- 1 tianon tianon 5920 Jun 13 09:43 Dockerfile
-rwxrwxr-x 1 tianon tianon  122 Jun 13 09:43 docker-php-entrypoint
-rwxrwxr-x 1 tianon tianon 1276 Jun 13 09:43 docker-php-ext-configure
-rwxrwxr-x 1 tianon tianon 2288 Jun 13 09:43 docker-php-ext-enable
-rwxrwxr-x 1 tianon tianon 2223 Jun 13 09:43 docker-php-ext-install
-rwxrwxr-x 1 tianon tianon  587 Jun 13 09:43 docker-php-source

$ docker build --pull 7.1/fpm
Sending build context to Docker daemon  36.86kB
Step 1/22 : FROM debian:jessie
jessie: Pulling from library/debian
Digest: sha256:e283dc7bdfe4df3672ba561cf50022528c493cc5800e80670ca47315aad6a5de
Status: Image is up to date for debian:jessie
 ---> a25c1eed1c6f
Step 2/22 : ENV PHPIZE_DEPS autoconf 		dpkg-dev 		file 	g++ 		gcc 		libc-dev 		libpcre3-dev 		make 		pkg-config 		re2c
 ---> Running in 6dfa86c81bec
 ---> c74e62b0f2ae
Removing intermediate container 6dfa86c81bec
Step 3/22 : RUN apt-get update && apt-get install -y 		$PHPIZE_DEPS 	ca-certificates 		curl 		libedit2 		libsqlite3-0 	libxml2 		xz-utils 	--no-install-recommends && rm -r /var/lib/apt/lists/*
 ---> Running in b91e5ce71c8e
Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
Ign http://deb.debian.org jessie InRelease
Get:2 http://deb.debian.org jessie-updates InRelease [145 kB]
Get:3 http://deb.debian.org jessie Release.gpg [2373 B]
Get:4 http://deb.debian.org jessie Release [148 kB]
Get:5 http://security.debian.org jessie/updates/main amd64 Packages [523 kB]
Get:6 http://deb.debian.org jessie-updates/main amd64 Packages [17.8 kB]
Get:7 http://deb.debian.org jessie/main amd64 Packages [9065 kB]
Fetched 9965 kB in 7s (1382 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  binutils bzip2 cpp cpp-4.9 g++-4.9 gcc-4.9 libasan1 libatomic1 libbsd0
  libc-dev-bin libc6 libcilkrts5 libcloog-isl4 libcurl3 libdpkg-perl libffi6
  libgcc-4.9-dev libgdbm3 libglib2.0-0 libgmp10 libgnutls-deb0-28 libgomp1
  libgssapi-krb5-2 libhogweed2 libidn11 libisl10 libitm1 libk5crypto3
  libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblsan0 libmagic1
  libmpc3 libmpfr4 libnettle4 libp11-kit0 libpcrecpp0 libquadmath0 librtmp1
  libsasl2-2 libsasl2-modules-db libsigsegv2 libssh2-1 libssl1.0.0
  libstdc++-4.9-dev libtasn1-6 libtimedate-perl libtsan0 libubsan0
  linux-libc-dev m4 openssl patch perl perl-modules
Suggested packages:
  autoconf-archive gnu-standards autoconf-doc libtool gettext binutils-doc
  bzip2-doc cpp-doc gcc-4.9-locales debian-keyring g++-multilib
  g++-4.9-multilib gcc-4.9-doc libstdc++6-4.9-dbg gcc-multilib manpages-dev
  flex bison gdb gcc-doc gcc-4.9-multilib libgcc1-dbg libgomp1-dbg libitm1-dbg
  libatomic1-dbg libasan1-dbg liblsan0-dbg libtsan0-dbg libubsan0-dbg
  libcilkrts5-dbg libquadmath0-dbg glibc-doc gnutls-bin krb5-doc krb5-user
  libstdc++-4.9-doc make-doc ed diffutils-doc perl-doc
  libterm-readline-gnu-perl libterm-readline-perl-perl libb-lint-perl
  libcpanplus-dist-build-perl libcpanplus-perl libfile-checktree-perl
  liblog-message-simple-perl liblog-message-perl libobject-accessor-perl
Recommended packages:
  automake automaken build-essential fakeroot libalgorithm-merge-perl
  libfile-fcntllock-perl libglib2.0-data shared-mime-info xdg-user-dirs
  krb5-locales libsasl2-modules xml-core rename libarchive-extract-perl
  libmodule-pluggable-perl libpod-latex-perl libterm-ui-perl
  libtext-soundex-perl libcgi-pm-perl libmodule-build-perl
  libpackage-constants-perl
The following NEW packages will be installed:
  autoconf binutils bzip2 ca-certificates cpp cpp-4.9 curl dpkg-dev file g++
  g++-4.9 gcc gcc-4.9 libasan1 libatomic1 libbsd0 libc-dev-bin libc6-dev
  libcilkrts5 libcloog-isl4 libcurl3 libdpkg-perl libedit2 libffi6
  libgcc-4.9-dev libgdbm3 libglib2.0-0 libgmp10 libgnutls-deb0-28 libgomp1
  libgssapi-krb5-2 libhogweed2 libidn11 libisl10 libitm1 libk5crypto3
  libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 liblsan0 libmagic1
  libmpc3 libmpfr4 libnettle4 libp11-kit0 libpcre3-dev libpcrecpp0
  libquadmath0 librtmp1 libsasl2-2 libsasl2-modules-db libsigsegv2
  libsqlite3-0 libssh2-1 libssl1.0.0 libstdc++-4.9-dev libtasn1-6
  libtimedate-perl libtsan0 libubsan0 libxml2 linux-libc-dev m4 make openssl
  patch perl perl-modules pkg-config re2c xz-utils
The following packages will be upgraded:
  libc6
1 upgraded, 72 newly installed, 0 to remove and 4 not upgraded.
Need to get 67.8 MB of archives.
After this operation, 201 MB of additional disk space will be used.
Get:1 http://security.debian.org/ jessie/updates/main libc6 amd64 2.19-18+deb8u10 [4665 kB]
Get:2 http://deb.debian.org/debian/ jessie/main libgdbm3 amd64 1.8.3-13.1 [30.0 kB]
Get:3 http://deb.debian.org/debian/ jessie/main libssl1.0.0 amd64 1.0.1t-1+deb8u6 [1047 kB]
Get:4 http://deb.debian.org/debian/ jessie/main libbsd0 amd64 0.7.0-2 [67.9 kB]
Get:5 http://deb.debian.org/debian/ jessie/main libedit2 amd64 3.1-20140620-2 [85.1 kB]
Get:6 http://deb.debian.org/debian/ jessie/main libgmp10 amd64 2:6.0.0+dfsg-6 [253 kB]
Get:7 http://deb.debian.org/debian/ jessie/main libnettle4 amd64 2.7.1-5+deb8u2 [176 kB]
Get:8 http://deb.debian.org/debian/ jessie/main libhogweed2 amd64 2.7.1-5+deb8u2 [125 kB]
Get:9 http://security.debian.org/ jessie/updates/main libffi6 amd64 3.1-2+deb8u1 [20.2 kB]
Get:10 http://deb.debian.org/debian/ jessie/main libp11-kit0 amd64 0.20.7-1 [81.2 kB]
Get:11 http://deb.debian.org/debian/ jessie/main libkeyutils1 amd64 1.5.9-5+b1 [12.0 kB]
Get:12 http://deb.debian.org/debian/ jessie/main libkrb5support0 amd64 1.12.1+dfsg-19+deb8u2 [59.1 kB]
Get:13 http://security.debian.org/ jessie/updates/main libtasn1-6 amd64 4.2-3+deb8u3 [49.2 kB]
Get:14 http://deb.debian.org/debian/ jessie/main libk5crypto3 amd64 1.12.1+dfsg-19+deb8u2 [115 kB]
Get:15 http://deb.debian.org/debian/ jessie/main libkrb5-3 amd64 1.12.1+dfsg-19+deb8u2 [303 kB]
Get:16 http://security.debian.org/ jessie/updates/main libgnutls-deb0-28 amd64 3.3.8-6+deb8u6 [696 kB]
Get:17 http://deb.debian.org/debian/ jessie/main libgssapi-krb5-2 amd64 1.12.1+dfsg-19+deb8u2 [152 kB]
Get:18 http://deb.debian.org/debian/ jessie/main libidn11 amd64 1.29-1+deb8u2 [136 kB]
Get:19 http://deb.debian.org/debian/ jessie/main libsasl2-modules-db amd64 2.1.26.dfsg1-13+deb8u1 [67.1 kB]
Get:20 http://deb.debian.org/debian/ jessie/main libsasl2-2 amd64 2.1.26.dfsg1-13+deb8u1 [105 kB]
Get:21 http://deb.debian.org/debian/ jessie/main libmagic1 amd64 1:5.22+15-2+deb8u3 [250 kB]
Get:22 http://deb.debian.org/debian/ jessie/main libsqlite3-0 amd64 3.8.7.1-1+deb8u2 [438 kB]
Get:23 http://deb.debian.org/debian/ jessie/main libxml2 amd64 2.9.1+dfsg1-5+deb8u4 [802 kB]
Get:24 http://deb.debian.org/debian/ jessie/main libasan1 amd64 4.9.2-10 [195 kB]
Get:25 http://deb.debian.org/debian/ jessie/main libatomic1 amd64 4.9.2-10 [8992 B]
Get:26 http://deb.debian.org/debian/ jessie/main libcilkrts5 amd64 4.9.2-10 [40.1 kB]
Get:27 http://deb.debian.org/debian/ jessie/main libisl10 amd64 0.12.2-2 [440 kB]
Get:28 http://deb.debian.org/debian/ jessie/main libcloog-isl4 amd64 0.18.2-1+b2 [61.8 kB]
Get:29 http://deb.debian.org/debian/ jessie/main libssh2-1 amd64 1.4.3-4.1+deb8u1 [125 kB]
Get:30 http://deb.debian.org/debian/ jessie/main libcurl3 amd64 7.38.0-4+deb8u5 [259 kB]
Get:31 http://deb.debian.org/debian/ jessie/main libglib2.0-0 amd64 2.42.1-1+b1 [2401 kB]
Get:32 http://deb.debian.org/debian/ jessie/main libgomp1 amd64 4.9.2-10 [37.8 kB]
Get:33 http://deb.debian.org/debian/ jessie/main libitm1 amd64 4.9.2-10 [29.2 kB]
Get:34 http://deb.debian.org/debian/ jessie/main liblsan0 amd64 4.9.2-10 [92.8 kB]
Get:35 http://deb.debian.org/debian/ jessie/main libmpfr4 amd64 3.1.2-2 [527 kB]
Get:36 http://deb.debian.org/debian/ jessie/main libpcrecpp0 amd64 2:8.35-3.3+deb8u4 [142 kB]
Get:37 http://deb.debian.org/debian/ jessie/main libquadmath0 amd64 4.9.2-10 [129 kB]
Get:38 http://deb.debian.org/debian/ jessie/main libsigsegv2 amd64 2.10-4+b1 [29.2 kB]
Get:39 http://deb.debian.org/debian/ jessie/main libtsan0 amd64 4.9.2-10 [212 kB]
Get:40 http://deb.debian.org/debian/ jessie/main libubsan0 amd64 4.9.2-10 [82.4 kB]
Get:41 http://deb.debian.org/debian/ jessie/main libmpc3 amd64 1.0.2-1 [39.3 kB]
Get:42 http://deb.debian.org/debian/ jessie/main bzip2 amd64 1.0.6-7+b3 [46.9 kB]
Get:43 http://deb.debian.org/debian/ jessie/main file amd64 1:5.22+15-2+deb8u3 [60.4 kB]
Get:44 http://deb.debian.org/debian/ jessie/main m4 amd64 1.4.17-4 [254 kB]
Get:45 http://deb.debian.org/debian/ jessie/main patch amd64 2.7.5-1 [109 kB]
Get:46 http://deb.debian.org/debian/ jessie/main xz-utils amd64 5.1.1alpha+20120614-2+b3 [221 kB]
Get:47 http://deb.debian.org/debian/ jessie/main autoconf all 2.69-8 [340 kB]
Get:48 http://deb.debian.org/debian/ jessie/main binutils amd64 2.25-5+deb8u1 [3496 kB]
Get:49 http://deb.debian.org/debian/ jessie/main openssl amd64 1.0.1t-1+deb8u6 [665 kB]
Get:50 http://deb.debian.org/debian/ jessie/main ca-certificates all 20141019+deb8u3 [207 kB]
Get:51 http://deb.debian.org/debian/ jessie/main cpp-4.9 amd64 4.9.2-10 [5169 kB]
Get:52 http://deb.debian.org/debian/ jessie/main cpp amd64 4:4.9.2-2 [17.3 kB]
Get:53 http://deb.debian.org/debian/ jessie/main curl amd64 7.38.0-4+deb8u5 [200 kB]
Get:54 http://deb.debian.org/debian/ jessie/main libtimedate-perl all 2.3000-2 [42.2 kB]
Get:55 http://deb.debian.org/debian/ jessie/main libdpkg-perl all 1.17.27 [1075 kB]
Get:56 http://deb.debian.org/debian/ jessie/main make amd64 4.0-8.1 [349 kB]
Get:57 http://deb.debian.org/debian/ jessie/main dpkg-dev all 1.17.27 [1548 kB]
Get:58 http://deb.debian.org/debian/ jessie/main libgcc-4.9-dev amd64 4.9.2-10 [2066 kB]
Get:59 http://deb.debian.org/debian/ jessie/main gcc-4.9 amd64 4.9.2-10 [5352 kB]
Get:60 http://deb.debian.org/debian/ jessie/main gcc amd64 4:4.9.2-2 [5136 B]
Get:61 http://deb.debian.org/debian/ jessie/main libstdc++-4.9-dev amd64 4.9.2-10 [1121 kB]
Get:62 http://deb.debian.org/debian/ jessie/main g++-4.9 amd64 4.9.2-10 [21.4 MB]
Get:63 http://security.debian.org/ jessie/updates/main libldap-2.4-2 amd64 2.4.40+dfsg-1+deb8u3 [218 kB]
Get:64 http://deb.debian.org/debian/ jessie/main g++ amd64 4:4.9.2-2 [1530 B]
Get:65 http://security.debian.org/ jessie/updates/main perl-modules all 5.20.2-3+deb8u7 [2547 kB]
Get:66 http://deb.debian.org/debian/ jessie/main libpcre3-dev amd64 2:8.35-3.3+deb8u4 [441 kB]
Get:67 http://deb.debian.org/debian/ jessie/main pkg-config amd64 0.28-1 [57.5 kB]
Get:68 http://deb.debian.org/debian/ jessie/main re2c amd64 0.13.5-1 [221 kB]
Get:69 http://security.debian.org/ jessie/updates/main perl amd64 5.20.2-3+deb8u7 [2631 kB]
Get:70 http://security.debian.org/ jessie/updates/main librtmp1 amd64 2.4+20150115.gita107cef-1+deb8u1 [60.0 kB]
Get:71 http://security.debian.org/ jessie/updates/main libc-dev-bin amd64 2.19-18+deb8u10 [238 kB]
Get:72 http://security.debian.org/ jessie/updates/main libc6-dev amd64 2.19-18+deb8u10 [2003 kB]
Get:73 http://security.debian.org/ jessie/updates/main linux-libc-dev amd64 3.16.43-2+deb8u1 [1060 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 67.8 MB in 27s (2454 kB/s)
(Reading database ... 7562 files and directories currently installed.)
Preparing to unpack .../libc6_2.19-18+deb8u10_amd64.deb ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.20.2 /usr/local/share/perl/5.20.2 /usr/lib/x86_64-linux-gnu/perl5/5.20 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.20 /usr/share/perl/5.20 /usr/local/lib/site_perl .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Unpacking libc6:amd64 (2.19-18+deb8u10) over (2.19-18+deb8u9) ...
Setting up libc6:amd64 (2.19-18+deb8u10) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.20.2 /usr/local/share/perl/5.20.2 /usr/lib/x86_64-linux-gnu/perl5/5.20 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.20 /usr/share/perl/5.20 /usr/local/lib/site_perl .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Processing triggers for libc-bin (2.19-18+deb8u9) ...
Selecting previously unselected package libgdbm3:amd64.
(Reading database ... 7562 files and directories currently installed.)
Preparing to unpack .../libgdbm3_1.8.3-13.1_amd64.deb ...
Unpacking libgdbm3:amd64 (1.8.3-13.1) ...
Selecting previously unselected package libssl1.0.0:amd64.
Preparing to unpack .../libssl1.0.0_1.0.1t-1+deb8u6_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.1t-1+deb8u6) ...
Selecting previously unselected package libbsd0:amd64.
Preparing to unpack .../libbsd0_0.7.0-2_amd64.deb ...
Unpacking libbsd0:amd64 (0.7.0-2) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../libedit2_3.1-20140620-2_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20140620-2) ...
Selecting previously unselected package libgmp10:amd64.
Preparing to unpack .../libgmp10_2%3a6.0.0+dfsg-6_amd64.deb ...
Unpacking libgmp10:amd64 (2:6.0.0+dfsg-6) ...
Selecting previously unselected package libnettle4:amd64.
Preparing to unpack .../libnettle4_2.7.1-5+deb8u2_amd64.deb ...
Unpacking libnettle4:amd64 (2.7.1-5+deb8u2) ...
Selecting previously unselected package libhogweed2:amd64.
Preparing to unpack .../libhogweed2_2.7.1-5+deb8u2_amd64.deb ...
Unpacking libhogweed2:amd64 (2.7.1-5+deb8u2) ...
Selecting previously unselected package libffi6:amd64.
Preparing to unpack .../libffi6_3.1-2+deb8u1_amd64.deb ...
Unpacking libffi6:amd64 (3.1-2+deb8u1) ...
Selecting previously unselected package libp11-kit0:amd64.
Preparing to unpack .../libp11-kit0_0.20.7-1_amd64.deb ...
Unpacking libp11-kit0:amd64 (0.20.7-1) ...
Selecting previously unselected package libtasn1-6:amd64.
Preparing to unpack .../libtasn1-6_4.2-3+deb8u3_amd64.deb ...
Unpacking libtasn1-6:amd64 (4.2-3+deb8u3) ...
Selecting previously unselected package libgnutls-deb0-28:amd64.
Preparing to unpack .../libgnutls-deb0-28_3.3.8-6+deb8u6_amd64.deb ...
Unpacking libgnutls-deb0-28:amd64 (3.3.8-6+deb8u6) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../libkeyutils1_1.5.9-5+b1_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.5.9-5+b1) ...
Selecting previously unselected package libkrb5support0:amd64.
Preparing to unpack .../libkrb5support0_1.12.1+dfsg-19+deb8u2_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.12.1+dfsg-19+deb8u2) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../libk5crypto3_1.12.1+dfsg-19+deb8u2_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.12.1+dfsg-19+deb8u2) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../libkrb5-3_1.12.1+dfsg-19+deb8u2_amd64.deb ...
Unpacking libkrb5-3:amd64 (1.12.1+dfsg-19+deb8u2) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Preparing to unpack .../libgssapi-krb5-2_1.12.1+dfsg-19+deb8u2_amd64.deb ...
Unpacking libgssapi-krb5-2:amd64 (1.12.1+dfsg-19+deb8u2) ...
Selecting previously unselected package libidn11:amd64.
Preparing to unpack .../libidn11_1.29-1+deb8u2_amd64.deb ...
Unpacking libidn11:amd64 (1.29-1+deb8u2) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../libsasl2-modules-db_2.1.26.dfsg1-13+deb8u1_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.26.dfsg1-13+deb8u1) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../libsasl2-2_2.1.26.dfsg1-13+deb8u1_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.26.dfsg1-13+deb8u1) ...
Selecting previously unselected package libldap-2.4-2:amd64.
Preparing to unpack .../libldap-2.4-2_2.4.40+dfsg-1+deb8u3_amd64.deb ...
Unpacking libldap-2.4-2:amd64 (2.4.40+dfsg-1+deb8u3) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../libmagic1_1%3a5.22+15-2+deb8u3_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.22+15-2+deb8u3) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../libsqlite3-0_3.8.7.1-1+deb8u2_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.8.7.1-1+deb8u2) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../libxml2_2.9.1+dfsg1-5+deb8u4_amd64.deb ...
Unpacking libxml2:amd64 (2.9.1+dfsg1-5+deb8u4) ...
Selecting previously unselected package perl-modules.
Preparing to unpack .../perl-modules_5.20.2-3+deb8u7_all.deb ...
Unpacking perl-modules (5.20.2-3+deb8u7) ...
Selecting previously unselected package perl.
Preparing to unpack .../perl_5.20.2-3+deb8u7_amd64.deb ...
Unpacking perl (5.20.2-3+deb8u7) ...
Selecting previously unselected package libasan1:amd64.
Preparing to unpack .../libasan1_4.9.2-10_amd64.deb ...
Unpacking libasan1:amd64 (4.9.2-10) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../libatomic1_4.9.2-10_amd64.deb ...
Unpacking libatomic1:amd64 (4.9.2-10) ...
Selecting previously unselected package libcilkrts5:amd64.
Preparing to unpack .../libcilkrts5_4.9.2-10_amd64.deb ...
Unpacking libcilkrts5:amd64 (4.9.2-10) ...
Selecting previously unselected package libisl10:amd64.
Preparing to unpack .../libisl10_0.12.2-2_amd64.deb ...
Unpacking libisl10:amd64 (0.12.2-2) ...
Selecting previously unselected package libcloog-isl4:amd64.
Preparing to unpack .../libcloog-isl4_0.18.2-1+b2_amd64.deb ...
Unpacking libcloog-isl4:amd64 (0.18.2-1+b2) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../librtmp1_2.4+20150115.gita107cef-1+deb8u1_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20150115.gita107cef-1+deb8u1) ...
Selecting previously unselected package libssh2-1:amd64.
Preparing to unpack .../libssh2-1_1.4.3-4.1+deb8u1_amd64.deb ...
Unpacking libssh2-1:amd64 (1.4.3-4.1+deb8u1) ...
Selecting previously unselected package libcurl3:amd64.
Preparing to unpack .../libcurl3_7.38.0-4+deb8u5_amd64.deb ...
Unpacking libcurl3:amd64 (7.38.0-4+deb8u5) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../libglib2.0-0_2.42.1-1+b1_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.42.1-1+b1) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../libgomp1_4.9.2-10_amd64.deb ...
Unpacking libgomp1:amd64 (4.9.2-10) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../libitm1_4.9.2-10_amd64.deb ...
Unpacking libitm1:amd64 (4.9.2-10) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../liblsan0_4.9.2-10_amd64.deb ...
Unpacking liblsan0:amd64 (4.9.2-10) ...
Selecting previously unselected package libmpfr4:amd64.
Preparing to unpack .../libmpfr4_3.1.2-2_amd64.deb ...
Unpacking libmpfr4:amd64 (3.1.2-2) ...
Selecting previously unselected package libpcrecpp0:amd64.
Preparing to unpack .../libpcrecpp0_2%3a8.35-3.3+deb8u4_amd64.deb ...
Unpacking libpcrecpp0:amd64 (2:8.35-3.3+deb8u4) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../libquadmath0_4.9.2-10_amd64.deb ...
Unpacking libquadmath0:amd64 (4.9.2-10) ...
Selecting previously unselected package libsigsegv2:amd64.
Preparing to unpack .../libsigsegv2_2.10-4+b1_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.10-4+b1) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../libtsan0_4.9.2-10_amd64.deb ...
Unpacking libtsan0:amd64 (4.9.2-10) ...
Selecting previously unselected package libubsan0:amd64.
Preparing to unpack .../libubsan0_4.9.2-10_amd64.deb ...
Unpacking libubsan0:amd64 (4.9.2-10) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../libmpc3_1.0.2-1_amd64.deb ...
Unpacking libmpc3:amd64 (1.0.2-1) ...
Selecting previously unselected package bzip2.
Preparing to unpack .../bzip2_1.0.6-7+b3_amd64.deb ...
Unpacking bzip2 (1.0.6-7+b3) ...
Selecting previously unselected package file.
Preparing to unpack .../file_1%3a5.22+15-2+deb8u3_amd64.deb ...
Unpacking file (1:5.22+15-2+deb8u3) ...
Selecting previously unselected package m4.
Preparing to unpack .../archives/m4_1.4.17-4_amd64.deb ...
Unpacking m4 (1.4.17-4) ...
Selecting previously unselected package patch.
Preparing to unpack .../patch_2.7.5-1_amd64.deb ...
Unpacking patch (2.7.5-1) ...
Selecting previously unselected package xz-utils.
Preparing to unpack .../xz-utils_5.1.1alpha+20120614-2+b3_amd64.deb ...
Unpacking xz-utils (5.1.1alpha+20120614-2+b3) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../autoconf_2.69-8_all.deb ...
Unpacking autoconf (2.69-8) ...
Selecting previously unselected package binutils.
Preparing to unpack .../binutils_2.25-5+deb8u1_amd64.deb ...
Unpacking binutils (2.25-5+deb8u1) ...
Selecting previously unselected package openssl.
Preparing to unpack .../openssl_1.0.1t-1+deb8u6_amd64.deb ...
Unpacking openssl (1.0.1t-1+deb8u6) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../ca-certificates_20141019+deb8u3_all.deb ...
Unpacking ca-certificates (20141019+deb8u3) ...
Selecting previously unselected package cpp-4.9.
Preparing to unpack .../cpp-4.9_4.9.2-10_amd64.deb ...
Unpacking cpp-4.9 (4.9.2-10) ...
Selecting previously unselected package cpp.
Preparing to unpack .../cpp_4%3a4.9.2-2_amd64.deb ...
Unpacking cpp (4:4.9.2-2) ...
Selecting previously unselected package curl.
Preparing to unpack .../curl_7.38.0-4+deb8u5_amd64.deb ...
Unpacking curl (7.38.0-4+deb8u5) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../libtimedate-perl_2.3000-2_all.deb ...
Unpacking libtimedate-perl (2.3000-2) ...
Selecting previously unselected package libdpkg-perl.
Preparing to unpack .../libdpkg-perl_1.17.27_all.deb ...
Unpacking libdpkg-perl (1.17.27) ...
Selecting previously unselected package make.
Preparing to unpack .../make_4.0-8.1_amd64.deb ...
Unpacking make (4.0-8.1) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../dpkg-dev_1.17.27_all.deb ...
Unpacking dpkg-dev (1.17.27) ...
Selecting previously unselected package libgcc-4.9-dev:amd64.
Preparing to unpack .../libgcc-4.9-dev_4.9.2-10_amd64.deb ...
Unpacking libgcc-4.9-dev:amd64 (4.9.2-10) ...
Selecting previously unselected package gcc-4.9.
Preparing to unpack .../gcc-4.9_4.9.2-10_amd64.deb ...
Unpacking gcc-4.9 (4.9.2-10) ...
Selecting previously unselected package gcc.
Preparing to unpack .../gcc_4%3a4.9.2-2_amd64.deb ...
Unpacking gcc (4:4.9.2-2) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../libc-dev-bin_2.19-18+deb8u10_amd64.deb ...
Unpacking libc-dev-bin (2.19-18+deb8u10) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../linux-libc-dev_3.16.43-2+deb8u1_amd64.deb ...
Unpacking linux-libc-dev:amd64 (3.16.43-2+deb8u1) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../libc6-dev_2.19-18+deb8u10_amd64.deb ...
Unpacking libc6-dev:amd64 (2.19-18+deb8u10) ...
Selecting previously unselected package libstdc++-4.9-dev:amd64.
Preparing to unpack .../libstdc++-4.9-dev_4.9.2-10_amd64.deb ...
Unpacking libstdc++-4.9-dev:amd64 (4.9.2-10) ...
Selecting previously unselected package g++-4.9.
Preparing to unpack .../g++-4.9_4.9.2-10_amd64.deb ...
Unpacking g++-4.9 (4.9.2-10) ...
Selecting previously unselected package g++.
Preparing to unpack .../g++_4%3a4.9.2-2_amd64.deb ...
Unpacking g++ (4:4.9.2-2) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../libpcre3-dev_2%3a8.35-3.3+deb8u4_amd64.deb ...
Unpacking libpcre3-dev:amd64 (2:8.35-3.3+deb8u4) ...
Selecting previously unselected package pkg-config.
Preparing to unpack .../pkg-config_0.28-1_amd64.deb ...
Unpacking pkg-config (0.28-1) ...
Selecting previously unselected package re2c.
Preparing to unpack .../re2c_0.13.5-1_amd64.deb ...
Unpacking re2c (0.13.5-1) ...
Setting up libgdbm3:amd64 (1.8.3-13.1) ...
Setting up libssl1.0.0:amd64 (1.0.1t-1+deb8u6) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Setting up libbsd0:amd64 (0.7.0-2) ...
Setting up libedit2:amd64 (3.1-20140620-2) ...
Setting up libgmp10:amd64 (2:6.0.0+dfsg-6) ...
Setting up libnettle4:amd64 (2.7.1-5+deb8u2) ...
Setting up libhogweed2:amd64 (2.7.1-5+deb8u2) ...
Setting up libffi6:amd64 (3.1-2+deb8u1) ...
Setting up libp11-kit0:amd64 (0.20.7-1) ...
Setting up libtasn1-6:amd64 (4.2-3+deb8u3) ...
Setting up libgnutls-deb0-28:amd64 (3.3.8-6+deb8u6) ...
Setting up libkeyutils1:amd64 (1.5.9-5+b1) ...
Setting up libkrb5support0:amd64 (1.12.1+dfsg-19+deb8u2) ...
Setting up libk5crypto3:amd64 (1.12.1+dfsg-19+deb8u2) ...
Setting up libkrb5-3:amd64 (1.12.1+dfsg-19+deb8u2) ...
Setting up libgssapi-krb5-2:amd64 (1.12.1+dfsg-19+deb8u2) ...
Setting up libidn11:amd64 (1.29-1+deb8u2) ...
Setting up libsasl2-modules-db:amd64 (2.1.26.dfsg1-13+deb8u1) ...
Setting up libsasl2-2:amd64 (2.1.26.dfsg1-13+deb8u1) ...
Setting up libldap-2.4-2:amd64 (2.4.40+dfsg-1+deb8u3) ...
Setting up libmagic1:amd64 (1:5.22+15-2+deb8u3) ...
Setting up libsqlite3-0:amd64 (3.8.7.1-1+deb8u2) ...
Setting up libxml2:amd64 (2.9.1+dfsg1-5+deb8u4) ...
Setting up perl-modules (5.20.2-3+deb8u7) ...
Setting up perl (5.20.2-3+deb8u7) ...
update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode
Setting up libasan1:amd64 (4.9.2-10) ...
Setting up libatomic1:amd64 (4.9.2-10) ...
Setting up libcilkrts5:amd64 (4.9.2-10) ...
Setting up libisl10:amd64 (0.12.2-2) ...
Setting up libcloog-isl4:amd64 (0.18.2-1+b2) ...
Setting up librtmp1:amd64 (2.4+20150115.gita107cef-1+deb8u1) ...
Setting up libssh2-1:amd64 (1.4.3-4.1+deb8u1) ...
Setting up libcurl3:amd64 (7.38.0-4+deb8u5) ...
Setting up libglib2.0-0:amd64 (2.42.1-1+b1) ...
No schema files found: doing nothing.
Setting up libgomp1:amd64 (4.9.2-10) ...
Setting up libitm1:amd64 (4.9.2-10) ...
Setting up liblsan0:amd64 (4.9.2-10) ...
Setting up libmpfr4:amd64 (3.1.2-2) ...
Setting up libpcrecpp0:amd64 (2:8.35-3.3+deb8u4) ...
Setting up libquadmath0:amd64 (4.9.2-10) ...
Setting up libsigsegv2:amd64 (2.10-4+b1) ...
Setting up libtsan0:amd64 (4.9.2-10) ...
Setting up libubsan0:amd64 (4.9.2-10) ...
Setting up libmpc3:amd64 (1.0.2-1) ...
Setting up bzip2 (1.0.6-7+b3) ...
Setting up file (1:5.22+15-2+deb8u3) ...
Setting up m4 (1.4.17-4) ...
Setting up patch (2.7.5-1) ...
Setting up xz-utils (5.1.1alpha+20120614-2+b3) ...
update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
Setting up autoconf (2.69-8) ...
Setting up binutils (2.25-5+deb8u1) ...
Setting up openssl (1.0.1t-1+deb8u6) ...
Setting up ca-certificates (20141019+deb8u3) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Updating certificates in /etc/ssl/certs... 174 added, 0 removed; done.
Setting up cpp-4.9 (4.9.2-10) ...
Setting up cpp (4:4.9.2-2) ...
Setting up curl (7.38.0-4+deb8u5) ...
Setting up libtimedate-perl (2.3000-2) ...
Setting up libdpkg-perl (1.17.27) ...
Setting up make (4.0-8.1) ...
Setting up dpkg-dev (1.17.27) ...
Setting up libgcc-4.9-dev:amd64 (4.9.2-10) ...
Setting up gcc-4.9 (4.9.2-10) ...
Setting up gcc (4:4.9.2-2) ...
Setting up libc-dev-bin (2.19-18+deb8u10) ...
Setting up linux-libc-dev:amd64 (3.16.43-2+deb8u1) ...
Setting up libc6-dev:amd64 (2.19-18+deb8u10) ...
Setting up libstdc++-4.9-dev:amd64 (4.9.2-10) ...
Setting up g++-4.9 (4.9.2-10) ...
Setting up g++ (4:4.9.2-2) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
Setting up libpcre3-dev:amd64 (2:8.35-3.3+deb8u4) ...
Setting up pkg-config (0.28-1) ...
Setting up re2c (0.13.5-1) ...
Processing triggers for libc-bin (2.19-18+deb8u9) ...
Processing triggers for ca-certificates (20141019+deb8u3) ...
Updating certificates in /etc/ssl/certs... 0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d....done.
 ---> 99a54f781ca0
Removing intermediate container b91e5ce71c8e
Step 4/22 : ENV PHP_INI_DIR /usr/local/etc/php
 ---> Running in 42f42c6ae550
 ---> d8a467811cbd
Removing intermediate container 42f42c6ae550
Step 5/22 : RUN mkdir -p $PHP_INI_DIR/conf.d
 ---> Running in c7998c0990e2
 ---> 2a5a60b51855
Removing intermediate container c7998c0990e2
Step 6/22 : ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data
 ---> Running in 49f6b3275525
 ---> 9926146f8741
Removing intermediate container 49f6b3275525
Step 7/22 : ENV PHP_CFLAGS "-fstack-protector-strong -fpic -fpie -O2"
 ---> Running in 5f9e4cca6893
 ---> cf264480aa66
Removing intermediate container 5f9e4cca6893
Step 8/22 : ENV PHP_CPPFLAGS "$PHP_CFLAGS"
 ---> Running in 31b39a6aed20
 ---> 6d6839153ff9
Removing intermediate container 31b39a6aed20
Step 9/22 : ENV PHP_LDFLAGS "-Wl,-O1 -Wl,--hash-style=both -pie"
 ---> Running in 14b490a03f10
 ---> bc1f14f1195a
Removing intermediate container 14b490a03f10
Step 10/22 : ENV GPG_KEYS A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0 528995BFEDFBA7191D46839EF9BA0ADA31CBD89E
 ---> Running in 2f20e06fc115
 ---> 620baa64a4a9
Removing intermediate container 2f20e06fc115
Step 11/22 : ENV PHP_VERSION 7.1.6
 ---> Running in 1936d54bbc13
 ---> b5a18c18d3c5
Removing intermediate container 1936d54bbc13
Step 12/22 : ENV PHP_URL "https://secure.php.net/get/php-7.1.6.tar.xz/from/this/mirror" PHP_ASC_URL "https://secure.php.net/get/php-7.1.6.tar.xz.asc/from/this/mirror"
 ---> Running in 09f52f3baa35
 ---> c0f3502f750c
Removing intermediate container 09f52f3baa35
Step 13/22 : ENV PHP_SHA256 "01584dc521ab7ec84b502b61952f573652fe6aa00c18d6d844fb9209f14b245b" PHP_MD5 "eafc7a79cc8cc62c9292c96f9c9ccf90"
 ---> Running in 2c9e69c85de8
 ---> e674f4e7626c
Removing intermediate container 2c9e69c85de8
Step 14/22 : RUN set -xe; 		fetchDeps=' 		wget 	'; 	apt-get update; 	apt-get install -y --no-install-recommends $fetchDeps; 	rm -rf /var/lib/apt/lists/*; 		mkdir -p /usr/src; 	cd /usr/src; 		wget -O php.tar.xz "$PHP_URL"; 		if [ -n "$PHP_SHA256" ]; then 		echo "$PHP_SHA256 *php.tar.xz" | sha256sum -c -; 	fi; 	if [ -n "$PHP_MD5" ]; then 		echo "$PHP_MD5 *php.tar.xz" | md5sum -c -; 	fi; 	if [ -n "$PHP_ASC_URL" ]; then 		wget -O php.tar.xz.asc "$PHP_ASC_URL"; export GNUPGHOME="$(mktemp -d)"; 		for key in $GPG_KEYS; do 	gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; 		done; 	gpg --batch --verify php.tar.xz.asc php.tar.xz; 		rm -r "$GNUPGHOME"; 	fi; 		apt-get purge -y --auto-remove $fetchDeps
 ---> Running in 89ac7f0bf74f
+ fetchDeps= 		wget 	
+ apt-get update
Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
Ign http://deb.debian.org jessie InRelease
Get:2 http://deb.debian.org jessie-updates InRelease [145 kB]
Get:3 http://deb.debian.org jessie Release.gpg [2373 B]
Get:4 http://deb.debian.org jessie Release [148 kB]
Get:5 http://security.debian.org jessie/updates/main amd64 Packages [523 kB]
Get:6 http://deb.debian.org jessie-updates/main amd64 Packages [17.8 kB]
Get:7 http://deb.debian.org jessie/main amd64 Packages [9065 kB]
Fetched 9965 kB in 7s (1357 kB/s)
Reading package lists...
+ apt-get install -y --no-install-recommends wget
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  libicu52 libpsl0
The following NEW packages will be installed:
  libicu52 libpsl0 wget
0 upgraded, 3 newly installed, 0 to remove and 4 not upgraded.
Need to get 7338 kB of archives.
After this operation, 30.3 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian/ jessie/main libicu52 amd64 52.1-8+deb8u5 [6801 kB]
Get:2 http://deb.debian.org/debian/ jessie/main libpsl0 amd64 0.5.1-1 [41.6 kB]
Get:3 http://deb.debian.org/debian/ jessie/main wget amd64 1.16-1+deb8u2 [496 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 7338 kB in 1s (4118 kB/s)
Selecting previously unselected package libicu52:amd64.
(Reading database ... 12844 files and directories currently installed.)
Preparing to unpack .../libicu52_52.1-8+deb8u5_amd64.deb ...
Unpacking libicu52:amd64 (52.1-8+deb8u5) ...
Selecting previously unselected package libpsl0:amd64.
Preparing to unpack .../libpsl0_0.5.1-1_amd64.deb ...
Unpacking libpsl0:amd64 (0.5.1-1) ...
Selecting previously unselected package wget.
Preparing to unpack .../wget_1.16-1+deb8u2_amd64.deb ...
Unpacking wget (1.16-1+deb8u2) ...
Setting up libicu52:amd64 (52.1-8+deb8u5) ...
Setting up libpsl0:amd64 (0.5.1-1) ...
Setting up wget (1.16-1+deb8u2) ...
Processing triggers for libc-bin (2.19-18+deb8u9) ...
+ rm -rf /var/lib/apt/lists/deb.debian.org_debian_dists_jessie-updates_InRelease /var/lib/apt/lists/deb.debian.org_debian_dists_jessie-updates_main_binary-amd64_Packages.gz /var/lib/apt/lists/deb.debian.org_debian_dists_jessie_Release /var/lib/apt/lists/deb.debian.org_debian_dists_jessie_Release.gpg /var/lib/apt/lists/deb.debian.org_debian_dists_jessie_main_binary-amd64_Packages.gz /var/lib/apt/lists/lock /var/lib/apt/lists/partial /var/lib/apt/lists/security.debian.org_dists_jessie_updates_InRelease /var/lib/apt/lists/security.debian.org_dists_jessie_updates_main_binary-amd64_Packages.gz
+ mkdir -p /usr/src
+ cd /usr/src
+ wget -O php.tar.xz https://secure.php.net/get/php-7.1.6.tar.xz/from/this/mirror
converted 'https://secure.php.net/get/php-7.1.6.tar.xz/from/this/mirror' (ANSI_X3.4-1968) -> 'https://secure.php.net/get/php-7.1.6.tar.xz/from/this/mirror' (UTF-8)
--2017-06-20 14:44:21--  https://secure.php.net/get/php-7.1.6.tar.xz/from/this/mirror
Resolving secure.php.net (secure.php.net)... 72.52.91.14, 2a02:cb41::7
Connecting to secure.php.net (secure.php.net)|72.52.91.14|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://php.net/distributions/php-7.1.6.tar.xz [following]
converted 'https://php.net/distributions/php-7.1.6.tar.xz' (ANSI_X3.4-1968) -> 'https://php.net/distributions/php-7.1.6.tar.xz' (UTF-8)
--2017-06-20 14:44:21--  https://php.net/distributions/php-7.1.6.tar.xz
Resolving php.net (php.net)... 72.52.91.14, 2a02:cb41::7
Connecting to php.net (php.net)|72.52.91.14|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://secure.php.net/distributions/php-7.1.6.tar.xz [following]
converted 'https://secure.php.net/distributions/php-7.1.6.tar.xz' (ANSI_X3.4-1968) -> 'https://secure.php.net/distributions/php-7.1.6.tar.xz' (UTF-8)
--2017-06-20 14:44:21--  https://secure.php.net/distributions/php-7.1.6.tar.xz
Connecting to secure.php.net (secure.php.net)|72.52.91.14|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 12808680 (12M) [application/x-xz]
Saving to: 'php.tar.xz'

     0K .......... .......... .......... .......... ..........  0%  194K 64s
    50K .......... .......... .......... .......... ..........  0% 3.10M 34s
   100K .......... .......... .......... .......... ..........  1% 7.92M 23s
   150K .......... .......... .......... .......... ..........  1% 10.7M 17s
   200K .......... .......... .......... .......... ..........  1% 12.7M 14s
   250K .......... .......... .......... .......... ..........  2% 4.93M 12s
   300K .......... .......... .......... .......... ..........  2% 10.1M 11s
   350K .......... .......... .......... .......... ..........  3% 8.87M 9s
   400K .......... .......... .......... .......... ..........  3% 11.5M 8s
   450K .......... .......... .......... .......... ..........  3% 11.7M 8s
   500K .......... .......... .......... .......... ..........  4% 11.5M 7s
   550K .......... .......... .......... .......... ..........  4% 11.2M 6s
   600K .......... .......... .......... .......... ..........  5% 11.0M 6s
   650K .......... .......... .......... .......... ..........  5% 11.2M 6s
   700K .......... .......... .......... .......... ..........  5% 12.7M 5s
   750K .......... .......... .......... .......... ..........  6% 8.59M 5s
   800K .......... .......... .......... .......... ..........  6% 11.2M 5s
   850K .......... .......... .......... .......... ..........  7% 11.8M 5s
   900K .......... .......... .......... .......... ..........  7% 11.8M 4s
   950K .......... .......... .......... .......... ..........  7% 11.7M 4s
  1000K .......... .......... .......... .......... ..........  8% 11.1M 4s
  1050K .......... .......... .......... .......... ..........  8% 11.9M 4s
  1100K .......... .......... .......... .......... ..........  9% 11.5M 4s
  1150K .......... .......... .......... .......... ..........  9% 8.86M 4s
  1200K .......... .......... .......... .......... ..........  9% 11.6M 3s
  1250K .......... .......... .......... .......... .......... 10% 11.7M 3s
  1300K .......... .......... .......... .......... .......... 10% 11.3M 3s
  1350K .......... .......... .......... .......... .......... 11% 11.0M 3s
  1400K .......... .......... .......... .......... .......... 11% 11.8M 3s
  1450K .......... .......... .......... .......... .......... 11% 11.9M 3s
  1500K .......... .......... .......... .......... .......... 12% 11.3M 3s
  1550K .......... .......... .......... .......... .......... 12% 8.82M 3s
  1600K .......... .......... .......... .......... .......... 13% 11.6M 3s
  1650K .......... .......... .......... .......... .......... 13% 12.0M 3s
  1700K .......... .......... .......... .......... .......... 13% 11.1M 3s
  1750K .......... .......... .......... .......... .......... 14% 11.2M 3s
  1800K .......... .......... .......... .......... .......... 14% 12.0M 3s
  1850K .......... .......... .......... .......... .......... 15% 11.4M 2s
  1900K .......... .......... .......... .......... .......... 15% 11.4M 2s
  1950K .......... .......... .......... .......... .......... 15% 9.22M 2s
  2000K .......... .......... .......... .......... .......... 16% 11.1M 2s
  2050K .......... .......... .......... .......... .......... 16% 11.7M 2s
  2100K .......... .......... .......... .......... .......... 17% 11.4M 2s
  2150K .......... .......... .......... .......... .......... 17% 11.2M 2s
  2200K .......... .......... .......... .......... .......... 17% 11.2M 2s
  2250K .......... .......... .......... .......... .......... 18% 12.2M 2s
  2300K .......... .......... .......... .......... .......... 18% 12.0M 2s
  2350K .......... .......... .......... .......... .......... 19% 8.60M 2s
  2400K .......... .......... .......... .......... .......... 19% 11.6M 2s
  2450K .......... .......... .......... .......... .......... 19% 12.0M 2s
  2500K .......... .......... .......... .......... .......... 20% 11.4M 2s
  2550K .......... .......... .......... .......... .......... 20% 11.7M 2s
  2600K .......... .......... .......... .......... .......... 21% 11.1M 2s
  2650K .......... .......... .......... .......... .......... 21% 11.4M 2s
  2700K .......... .......... .......... .......... .......... 21% 12.2M 2s
  2750K .......... .......... .......... .......... .......... 22% 8.72M 2s
  2800K .......... .......... .......... .......... .......... 22% 11.6M 2s
  2850K .......... .......... .......... .......... .......... 23% 11.8M 2s
  2900K .......... .......... .......... .......... .......... 23% 11.7M 2s
  2950K .......... .......... .......... .......... .......... 23% 10.8M 2s
  3000K .......... .......... .......... .......... .......... 24% 11.7M 2s
  3050K .......... .......... .......... .......... .......... 24% 11.7M 2s
  3100K .......... .......... .......... .......... .......... 25% 11.3M 2s
  3150K .......... .......... .......... .......... .......... 25% 8.91M 2s
  3200K .......... .......... .......... .......... .......... 25% 11.3M 2s
  3250K .......... .......... .......... .......... .......... 26% 12.0M 2s
  3300K .......... .......... .......... .......... .......... 26% 11.7M 2s
  3350K .......... .......... .......... .......... .......... 27% 11.4M 2s
  3400K .......... .......... .......... .......... .......... 27% 11.1M 2s
  3450K .......... .......... .......... .......... .......... 27% 11.5M 1s
  3500K .......... .......... .......... .......... .......... 28% 12.1M 1s
  3550K .......... .......... .......... .......... .......... 28% 8.76M 1s
  3600K .......... .......... .......... .......... .......... 29% 11.1M 1s
  3650K .......... .......... .......... .......... .......... 29% 12.2M 1s
  3700K .......... .......... .......... .......... .......... 29% 11.5M 1s
  3750K .......... .......... .......... .......... .......... 30% 10.8M 1s
  3800K .......... .......... .......... .......... .......... 30% 11.7M 1s
  3850K .......... .......... .......... .......... .......... 31% 12.0M 1s
  3900K .......... .......... .......... .......... .......... 31% 11.5M 1s
  3950K .......... .......... .......... .......... .......... 31% 8.71M 1s
  4000K .......... .......... .......... .......... .......... 32% 12.1M 1s
  4050K .......... .......... .......... .......... .......... 32% 11.6M 1s
  4100K .......... .......... .......... .......... .......... 33% 11.3M 1s
  4150K .......... .......... .......... .......... .......... 33% 11.4M 1s
  4200K .......... .......... .......... .......... .......... 33% 12.0M 1s
  4250K .......... .......... .......... .......... .......... 34% 11.5M 1s
  4300K .......... .......... .......... .......... .......... 34% 11.7M 1s
  4350K .......... .......... .......... .......... .......... 35% 8.66M 1s
  4400K .......... .......... .......... .......... .......... 35% 11.4M 1s
  4450K .......... .......... .......... .......... .......... 35% 11.2M 1s
  4500K .......... .......... .......... .......... .......... 36% 11.6M 1s
  4550K .......... .......... .......... .......... .......... 36% 11.9M 1s
  4600K .......... .......... .......... .......... .......... 37% 11.5M 1s
  4650K .......... .......... .......... .......... .......... 37% 11.6M 1s
  4700K .......... .......... .......... .......... .......... 37% 11.8M 1s
  4750K .......... .......... .......... .......... .......... 38% 8.49M 1s
  4800K .......... .......... .......... .......... .......... 38% 11.4M 1s
  4850K .......... .......... .......... .......... .......... 39% 11.8M 1s
  4900K .......... .......... .......... .......... .......... 39% 11.4M 1s
  4950K .......... .......... .......... .......... .......... 39% 11.7M 1s
  5000K .......... .......... .......... .......... .......... 40% 11.4M 1s
  5050K .......... .......... .......... .......... .......... 40% 11.3M 1s
  5100K .......... .......... .......... .......... .......... 41% 12.3M 1s
  5150K .......... .......... .......... .......... .......... 41% 8.87M 1s
  5200K .......... .......... .......... .......... .......... 41% 11.1M 1s
  5250K .......... .......... .......... .......... .......... 42% 11.8M 1s
  5300K .......... .......... .......... .......... .......... 42% 12.1M 1s
  5350K .......... .......... .......... .......... .......... 43% 10.6M 1s
  5400K .......... .......... .......... .......... .......... 43% 12.4M 1s
  5450K .......... .......... .......... .......... .......... 43% 11.5M 1s
  5500K .......... .......... .......... .......... .......... 44% 11.4M 1s
  5550K .......... .......... .......... .......... .......... 44% 8.76M 1s
  5600K .......... .......... .......... .......... .......... 45% 11.9M 1s
  5650K .......... .......... .......... .......... .......... 45% 11.8M 1s
  5700K .......... .......... .......... .......... .......... 45% 11.3M 1s
  5750K .......... .......... .......... .......... .......... 46% 11.7M 1s
  5800K .......... .......... .......... .......... .......... 46% 10.6M 1s
  5850K .......... .......... .......... .......... .......... 47%  905K 1s
  5900K .......... .......... .......... .......... .......... 47% 30.0M 1s
  5950K .......... .......... .......... .......... .......... 47% 13.2M 1s
  6000K .......... .......... .......... .......... .......... 48% 14.9M 1s
  6050K .......... .......... .......... .......... .......... 48% 17.2M 1s
  6100K .......... .......... .......... .......... .......... 49% 17.6M 1s
  6150K .......... .......... .......... .......... .......... 49% 41.0M 1s
  6200K .......... .......... .......... .......... .......... 49%  167M 1s
  6250K .......... .......... .......... .......... .......... 50%  153M 1s
  6300K .......... .......... .......... .......... .......... 50%  151M 1s
  6350K .......... .......... .......... .......... .......... 51%  131M 1s
  6400K .......... .......... .......... .......... .......... 51%  143M 1s
  6450K .......... .......... .......... .......... .......... 51%  144M 1s
  6500K .......... .......... .......... .......... .......... 52%  169M 1s
  6550K .......... .......... .......... .......... .......... 52%  148M 1s
  6600K .......... .......... .......... .......... .......... 53%  144M 1s
  6650K .......... .......... .......... .......... .......... 53% 92.5M 1s
  6700K .......... .......... .......... .......... .......... 53% 11.4M 1s
  6750K .......... .......... .......... .......... .......... 54% 8.66M 1s
  6800K .......... .......... .......... .......... .......... 54% 12.2M 1s
  6850K .......... .......... .......... .......... .......... 55% 11.0M 1s
  6900K .......... .......... .......... .......... .......... 55% 12.3M 1s
  6950K .......... .......... .......... .......... .......... 55% 11.4M 1s
  7000K .......... .......... .......... .......... .......... 56% 11.1M 1s
  7050K .......... .......... .......... .......... .......... 56% 11.7M 1s
  7100K .......... .......... .......... .......... .......... 57% 11.3M 1s
  7150K .......... .......... .......... .......... .......... 57% 8.66M 1s
  7200K .......... .......... .......... .......... .......... 57% 12.0M 1s
  7250K .......... .......... .......... .......... .......... 58% 11.0M 1s
  7300K .......... .......... .......... .......... .......... 58% 11.6M 1s
  7350K .......... .......... .......... .......... .......... 59% 11.3M 1s
  7400K .......... .......... .......... .......... .......... 59% 11.7M 1s
  7450K .......... .......... .......... .......... .......... 59% 11.6M 1s
  7500K .......... .......... .......... .......... .......... 60% 11.8M 1s
  7550K .......... .......... .......... .......... .......... 60% 8.79M 1s
  7600K .......... .......... .......... .......... .......... 61% 12.0M 1s
  7650K .......... .......... .......... .......... .......... 61% 11.5M 1s
  7700K .......... .......... .......... .......... .......... 61% 11.6M 1s
  7750K .......... .......... .......... .......... .......... 62% 11.0M 1s
  7800K .......... .......... .......... .......... .......... 62% 11.2M 1s
  7850K .......... .......... .......... .......... .......... 63% 12.1M 1s
  7900K .......... .......... .......... .......... .......... 63% 11.7M 1s
  7950K .......... .......... .......... .......... .......... 63% 8.62M 1s
  8000K .......... .......... .......... .......... .......... 64% 11.6M 1s
  8050K .......... .......... .......... .......... .......... 64% 11.7M 1s
  8100K .......... .......... .......... .......... .......... 65% 11.9M 1s
  8150K .......... .......... .......... .......... .......... 65% 11.1M 1s
  8200K .......... .......... .......... .......... .......... 65% 11.6M 1s
  8250K .......... .......... .......... .......... .......... 66% 11.8M 1s
  8300K .......... .......... .......... .......... .......... 66% 11.2M 1s
  8350K .......... .......... .......... .......... .......... 67% 9.06M 0s
  8400K .......... .......... .......... .......... .......... 67% 10.9M 0s
  8450K .......... .......... .......... .......... .......... 67% 10.7M 0s
  8500K .......... .......... .......... .......... .......... 68% 11.8M 0s
  8550K .......... .......... .......... .......... .......... 68% 11.7M 0s
  8600K .......... .......... .......... .......... .......... 69% 11.8M 0s
  8650K .......... .......... .......... .......... .......... 69% 11.2M 0s
  8700K .......... .......... .......... .......... .......... 69% 11.2M 0s
  8750K .......... .......... .......... .......... .......... 70% 8.83M 0s
  8800K .......... .......... .......... .......... .......... 70% 11.6M 0s
  8850K .......... .......... .......... .......... .......... 71% 11.7M 0s
  8900K .......... .......... .......... .......... .......... 71% 11.6M 0s
  8950K .......... .......... .......... .......... .......... 71% 11.1M 0s
  9000K .......... .......... .......... .......... .......... 72% 11.4M 0s
  9050K .......... .......... .......... .......... .......... 72% 11.3M 0s
  9100K .......... .......... .......... .......... .......... 73% 11.6M 0s
  9150K .......... .......... .......... .......... .......... 73% 8.81M 0s
  9200K .......... .......... .......... .......... .......... 73% 10.9M 0s
  9250K .......... .......... .......... .......... .......... 74% 11.8M 0s
  9300K .......... .......... .......... .......... .......... 74% 11.8M 0s
  9350K .......... .......... .......... .......... .......... 75% 11.4M 0s
  9400K .......... .......... .......... .......... .......... 75% 11.8M 0s
  9450K .......... .......... .......... .......... .......... 75% 11.7M 0s
  9500K .......... .......... .......... .......... .......... 76% 11.0M 0s
  9550K .......... .......... .......... .......... .......... 76% 8.78M 0s
  9600K .......... .......... .......... .......... .......... 77% 11.9M 0s
  9650K .......... .......... .......... .......... .......... 77% 10.9M 0s
  9700K .......... .......... .......... .......... .......... 77% 10.9M 0s
  9750K .......... .......... .......... .......... .......... 78% 10.8M 0s
  9800K .......... .......... .......... .......... .......... 78% 11.5M 0s
  9850K .......... .......... .......... .......... .......... 79% 11.3M 0s
  9900K .......... .......... .......... .......... .......... 79% 11.2M 0s
  9950K .......... .......... .......... .......... .......... 79% 9.07M 0s
 10000K .......... .......... .......... .......... .......... 80% 11.8M 0s
 10050K .......... .......... .......... .......... .......... 80% 11.5M 0s
 10100K .......... .......... .......... .......... .......... 81% 11.6M 0s
 10150K .......... .......... .......... .......... .......... 81% 10.9M 0s
 10200K .......... .......... .......... .......... .......... 81% 11.3M 0s
 10250K .......... .......... .......... .......... .......... 82% 12.3M 0s
 10300K .......... .......... .......... .......... .......... 82% 10.8M 0s
 10350K .......... .......... .......... .......... .......... 83% 8.77M 0s
 10400K .......... .......... .......... .......... .......... 83% 11.6M 0s
 10450K .......... .......... .......... .......... .......... 83% 11.3M 0s
 10500K .......... .......... .......... .......... .......... 84% 11.5M 0s
 10550K .......... .......... .......... .......... .......... 84% 11.7M 0s
 10600K .......... .......... .......... .......... .......... 85% 11.6M 0s
 10650K .......... .......... .......... .......... .......... 85% 11.2M 0s
 10700K .......... .......... .......... .......... .......... 85% 11.8M 0s
 10750K .......... .......... .......... .......... .......... 86% 8.92M 0s
 10800K .......... .......... .......... .......... .......... 86% 11.2M 0s
 10850K .......... .......... .......... .......... .......... 87% 11.2M 0s
 10900K .......... .......... .......... .......... .......... 87% 12.1M 0s
 10950K .......... .......... .......... .......... .......... 87% 11.4M 0s
 11000K .......... .......... .......... .......... .......... 88% 11.1M 0s
 11050K .......... .......... .......... .......... .......... 88% 11.1M 0s
 11100K .......... .......... .......... .......... .......... 89% 10.7M 0s
 11150K .......... .......... .......... .......... .......... 89% 9.08M 0s
 11200K .......... .......... .......... .......... .......... 89% 11.4M 0s
 11250K .......... .......... .......... .......... .......... 90% 11.3M 0s
 11300K .......... .......... .......... .......... .......... 90% 11.4M 0s
 11350K .......... .......... .......... .......... .......... 91% 11.8M 0s
 11400K .......... .......... .......... .......... .......... 91% 11.3M 0s
 11450K .......... .......... .......... .......... .......... 91% 11.4M 0s
 11500K .......... .......... .......... .......... .......... 92% 11.7M 0s
 11550K .......... .......... .......... .......... .......... 92% 8.47M 0s
 11600K .......... .......... .......... .......... .......... 93% 12.1M 0s
 11650K .......... .......... .......... .......... .......... 93% 11.6M 0s
 11700K .......... .......... .......... .......... .......... 93% 11.7M 0s
 11750K .......... .......... .......... .......... .......... 94% 11.2M 0s
 11800K .......... .......... .......... .......... .......... 94% 11.9M 0s
 11850K .......... .......... .......... .......... .......... 95% 11.1M 0s
 11900K .......... .......... .......... .......... .......... 95% 11.7M 0s
 11950K .......... .......... .......... .......... .......... 95% 8.68M 0s
 12000K .......... .......... .......... .......... .......... 96% 11.8M 0s
 12050K .......... .......... .......... .......... .......... 96% 11.3M 0s
 12100K .......... .......... .......... .......... .......... 97% 11.5M 0s
 12150K .......... .......... .......... .......... .......... 97% 11.6M 0s
 12200K .......... .......... .......... .......... .......... 97% 11.5M 0s
 12250K .......... .......... .......... .......... .......... 98% 11.3M 0s
 12300K .......... .......... .......... .......... .......... 98% 11.5M 0s
 12350K .......... .......... .......... .......... .......... 99% 8.71M 0s
 12400K .......... .......... .......... .......... .......... 99% 11.2M 0s
 12450K .......... .......... .......... .......... .......... 99% 12.9M 0s
 12500K ........                                              100%  136M=1.4s

2017-06-20 14:44:23 (8.89 MB/s) - 'php.tar.xz' saved [12808680/12808680]

+ [ -n 01584dc521ab7ec84b502b61952f573652fe6aa00c18d6d844fb9209f14b245b ]
+ echo 01584dc521ab7ec84b502b61952f573652fe6aa00c18d6d844fb9209f14b245b *php.tar.xz
+ sha256sum -c -
php.tar.xz: OK
+ [ -n eafc7a79cc8cc62c9292c96f9c9ccf90 ]
+ md5sum -c+  -
echo eafc7a79cc8cc62c9292c96f9c9ccf90 *php.tar.xz
php.tar.xz: OK
+ [ -n https://secure.php.net/get/php-7.1.6.tar.xz.asc/from/this/mirror ]
+ wget -O php.tar.xz.asc https://secure.php.net/get/php-7.1.6.tar.xz.asc/from/this/mirror
converted 'https://secure.php.net/get/php-7.1.6.tar.xz.asc/from/this/mirror' (ANSI_X3.4-1968) -> 'https://secure.php.net/get/php-7.1.6.tar.xz.asc/from/this/mirror' (UTF-8)
--2017-06-20 14:44:23--  https://secure.php.net/get/php-7.1.6.tar.xz.asc/from/this/mirror
Resolving secure.php.net (secure.php.net)... 72.52.91.14, 2a02:cb41::7
Connecting to secure.php.net (secure.php.net)|72.52.91.14|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://php.net/distributions/php-7.1.6.tar.xz.asc [following]
converted 'https://php.net/distributions/php-7.1.6.tar.xz.asc' (ANSI_X3.4-1968) -> 'https://php.net/distributions/php-7.1.6.tar.xz.asc' (UTF-8)
--2017-06-20 14:44:23--  https://php.net/distributions/php-7.1.6.tar.xz.asc
Resolving php.net (php.net)... 72.52.91.14, 2a02:cb41::7
Connecting to php.net (php.net)|72.52.91.14|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://secure.php.net/distributions/php-7.1.6.tar.xz.asc [following]
converted 'https://secure.php.net/distributions/php-7.1.6.tar.xz.asc' (ANSI_X3.4-1968) -> 'https://secure.php.net/distributions/php-7.1.6.tar.xz.asc' (UTF-8)
--2017-06-20 14:44:23--  https://secure.php.net/distributions/php-7.1.6.tar.xz.asc
Connecting to secure.php.net (secure.php.net)|72.52.91.14|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 473 [text/plain]
Saving to: 'php.tar.xz.asc'

     0K                                                       100% 8.24M=0s

2017-06-20 14:44:23 (8.24 MB/s) - 'php.tar.xz.asc' saved [473/473]

+ mktemp -d
+ export GNUPGHOME=/tmp/tmp.6sY1T8meti
+ gpg --keyserver ha.pool.sks-keyservers.net --recv-keys A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0
gpg: keyring `/tmp/tmp.6sY1T8meti/secring.gpg' created
gpg: keyring `/tmp/tmp.6sY1T8meti/pubring.gpg' created
gpg: requesting key 7BD5DCD0 from hkp server ha.pool.sks-keyservers.net
gpg: /tmp/tmp.6sY1T8meti/trustdb.gpg: trustdb created
gpg: key 7BD5DCD0: public key "Davey Shafik <>" imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
+ gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 528995BFEDFBA7191D46839EF9BA0ADA31CBD89E
gpg: requesting key 31CBD89E from hkp server ha.pool.sks-keyservers.net
gpg: key 31CBD89E: public key "Joe Watkins <>" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
+ gpg --batch --verify php.tar.xz.asc php.tar.xz
gpg: Signature made Wed Jun  7 08:12:10 2017 UTC using RSA key ID 31CBD89E
gpg: Good signature from "Joe Watkins <>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5289 95BF EDFB A719 1D46  839E F9BA 0ADA 31CB D89E
+ rm -r /tmp/tmp.6sY1T8meti
+ apt-get purge -y --auto-remove wget
Reading package lists...
Building dependency tree...
Reading state information...
The following packages will be REMOVED:
  libicu52* libpsl0* wget*
0 upgraded, 0 newly installed, 3 to remove and 0 not upgraded.
After this operation, 30.3 MB disk space will be freed.
(Reading database ... 12922 files and directories currently installed.)
Removing wget (1.16-1+deb8u2) ...
Purging configuration files for wget (1.16-1+deb8u2) ...
Removing libpsl0:amd64 (0.5.1-1) ...
Purging configuration files for libpsl0:amd64 (0.5.1-1) ...
Removing libicu52:amd64 (52.1-8+deb8u5) ...
Purging configuration files for libicu52:amd64 (52.1-8+deb8u5) ...
Processing triggers for libc-bin (2.19-18+deb8u9) ...
 ---> d9bbb84864b7
Removing intermediate container 89ac7f0bf74f
Step 15/22 : COPY docker-php-source /usr/local/bin/
 ---> 4fe4afb9eab8
Removing intermediate container 922f0b0a08cc
Step 16/22 : RUN set -xe 	&& buildDeps=" 		$PHP_EXTRA_BUILD_DEPS 	libcurl4-openssl-dev 		libedit-dev 		libsqlite3-dev 		libssl-dev 		libxml2-dev 	" 	&& apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* 	&& export CFLAGS="$PHP_CFLAGS" 		CPPFLAGS="$PHP_CPPFLAGS" 		LDFLAGS="$PHP_LDFLAGS" 	&& docker-php-source extract 	&& cd /usr/src/php 	&& gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" 	&& debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)" 	&& ./configure 		--build="$gnuArch" 		--with-config-file-path="$PHP_INI_DIR" 		--with-config-file-scan-dir="$PHP_INI_DIR/conf.d" 				--disable-cgi 				--enable-ftp 		--enable-mbstring 		--enable-mysqlnd 				--with-curl 	--with-libedit 		--with-openssl 		--with-zlib 			--with-pcre-regex=/usr 		--with-libdir="lib/$debMultiarch" 		$PHP_EXTRA_CONFIGURE_ARGS 	&& make -j "$(nproc)" 	&& make install 	&& { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } 	&& make clean 	&& cd / 	&& docker-php-source delete 		&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $buildDeps 		&& pecl update-channels 	&& rm -rf /tmp/pear ~/.pearrc
 ---> Running in 5b44cf0e6877
+ buildDeps= 		 		libcurl4-openssl-dev 		libedit-dev 		libsqlite3-dev 		libssl-dev 		libxml2-dev 	
+ apt-get update
Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
Ign http://deb.debian.org jessie InRelease
Get:2 http://deb.debian.org jessie-updates InRelease [145 kB]
Get:3 http://security.debian.org jessie/updates/main amd64 Packages [523 kB]
Get:4 http://deb.debian.org jessie Release.gpg [2373 B]
Get:5 http://deb.debian.org jessie Release [148 kB]
Get:6 http://deb.debian.org jessie-updates/main amd64 Packages [17.8 kB]
Get:7 http://deb.debian.org jessie/main amd64 Packages [9065 kB]
Fetched 9965 kB in 6s (1435 kB/s)
Reading package lists...
+ apt-get install -y libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev libxml2-dev --no-install-recommends
Reading package lists...
Building dependency tree...
Reading state information...
The following extra packages will be installed:
  libbsd-dev libtinfo-dev zlib1g-dev
Suggested packages:
  libcurl4-doc libcurl3-dbg libidn11-dev libkrb5-dev libldap2-dev librtmp-dev
  libssh2-1-dev sqlite3-doc
Recommended packages:
  libssl-doc
The following NEW packages will be installed:
  libbsd-dev libcurl4-openssl-dev libedit-dev libsqlite3-dev libssl-dev
  libtinfo-dev libxml2-dev zlib1g-dev
0 upgraded, 8 newly installed, 0 to remove and 4 not upgraded.
Need to get 3397 kB of archives.
After this operation, 14.4 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian/ jessie/main libbsd-dev amd64 0.7.0-2 [160 kB]
Get:2 http://deb.debian.org/debian/ jessie/main libcurl4-openssl-dev amd64 7.38.0-4+deb8u5 [337 kB]
Get:3 http://deb.debian.org/debian/ jessie/main libtinfo-dev amd64 5.9+20140913-1+b1 [77.1 kB]
Get:4 http://deb.debian.org/debian/ jessie/main libedit-dev amd64 3.1-20140620-2 [101 kB]
Get:5 http://deb.debian.org/debian/ jessie/main libsqlite3-dev amd64 3.8.7.1-1+deb8u2 [538 kB]
Get:6 http://deb.debian.org/debian/ jessie/main zlib1g-dev amd64 1:1.2.8.dfsg-2+b1 [206 kB]
Get:7 http://deb.debian.org/debian/ jessie/main libssl-dev amd64 1.0.1t-1+deb8u6 [1283 kB]
Get:8 http://deb.debian.org/debian/ jessie/main libxml2-dev amd64 2.9.1+dfsg1-5+deb8u4 [695 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 3397 kB in 1s (2393 kB/s)
Selecting previously unselected package libbsd-dev:amd64.
(Reading database ... 12844 files and directories currently installed.)
Preparing to unpack .../libbsd-dev_0.7.0-2_amd64.deb ...
Unpacking libbsd-dev:amd64 (0.7.0-2) ...
Selecting previously unselected package libcurl4-openssl-dev:amd64.
Preparing to unpack .../libcurl4-openssl-dev_7.38.0-4+deb8u5_amd64.deb ...
Unpacking libcurl4-openssl-dev:amd64 (7.38.0-4+deb8u5) ...
Selecting previously unselected package libtinfo-dev:amd64.
Preparing to unpack .../libtinfo-dev_5.9+20140913-1+b1_amd64.deb ...
Unpacking libtinfo-dev:amd64 (5.9+20140913-1+b1) ...
Selecting previously unselected package libedit-dev:amd64.
Preparing to unpack .../libedit-dev_3.1-20140620-2_amd64.deb ...
Unpacking libedit-dev:amd64 (3.1-20140620-2) ...
Selecting previously unselected package libsqlite3-dev:amd64.
Preparing to unpack .../libsqlite3-dev_3.8.7.1-1+deb8u2_amd64.deb ...
Unpacking libsqlite3-dev:amd64 (3.8.7.1-1+deb8u2) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../zlib1g-dev_1%3a1.2.8.dfsg-2+b1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.8.dfsg-2+b1) ...
Selecting previously unselected package libssl-dev:amd64.
Preparing to unpack .../libssl-dev_1.0.1t-1+deb8u6_amd64.deb ...
Unpacking libssl-dev:amd64 (1.0.1t-1+deb8u6) ...
Selecting previously unselected package libxml2-dev:amd64.
Preparing to unpack .../libxml2-dev_2.9.1+dfsg1-5+deb8u4_amd64.deb ...
Unpacking libxml2-dev:amd64 (2.9.1+dfsg1-5+deb8u4) ...
Setting up libbsd-dev:amd64 (0.7.0-2) ...
Setting up libcurl4-openssl-dev:amd64 (7.38.0-4+deb8u5) ...
Setting up libtinfo-dev:amd64 (5.9+20140913-1+b1) ...
Setting up libedit-dev:amd64 (3.1-20140620-2) ...
Setting up libsqlite3-dev:amd64 (3.8.7.1-1+deb8u2) ...
Setting up zlib1g-dev:amd64 (1:1.2.8.dfsg-2+b1) ...
Setting up libssl-dev:amd64 (1.0.1t-1+deb8u6) ...
Setting up libxml2-dev:amd64 (2.9.1+dfsg1-5+deb8u4) ...
+ rm -rf /var/lib/apt/lists/deb.debian.org_debian_dists_jessie-updates_InRelease /var/lib/apt/lists/deb.debian.org_debian_dists_jessie-updates_main_binary-amd64_Packages.gz /var/lib/apt/lists/deb.debian.org_debian_dists_jessie_Release /var/lib/apt/lists/deb.debian.org_debian_dists_jessie_Release.gpg /var/lib/apt/lists/deb.debian.org_debian_dists_jessie_main_binary-amd64_Packages.gz /var/lib/apt/lists/lock /var/lib/apt/lists/partial /var/lib/apt/lists/security.debian.org_dists_jessie_updates_InRelease /var/lib/apt/lists/security.debian.org_dists_jessie_updates_main_binary-amd64_Packages.gz
+ export CFLAGS=-fstack-protector-strong -fpic -fpie -O2 CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 LDFLAGS=-Wl,-O1 -Wl,--hash-style=both -pie
+ docker-php-source extract
+ cd /usr/src/php
+ dpkg-architecture --query DEB_BUILD_GNU_TYPE
+ gnuArch=x86_64-linux-gnu
+ dpkg-architecture --query DEB_BUILD_MULTIARCH
+ debMultiarch=x86_64-linux-gnu
+ ./configure --build=x86_64-linux-gnu --with-config-file-path=/usr/local/etc/php --with-config-file-scan-dir=/usr/local/etc/php/conf.d --disable-cgi --enable-ftp --enable-mbstring --enable-mysqlnd --with-curl --with-libedit --with-openssl --with-zlib --with-pcre-regex=/usr --with-libdir=lib/x86_64-linux-gnu --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
shtool:echo:Warning: unable to determine terminal sequence for bold mode
shtool:echo:Warning: unable to determine terminal sequence for bold mode
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes

...