Namespace
library
Image / Tag
php:7.0.17-zts
Content Digest
sha256:643a1ea5e6cafb8f7e69a83a394cf199c2135ca1dcc607204c1c06fe1b210ed0
Details
Created

2017-03-21 23:37:13 UTC

Size

144 MB

Content Digest
Environment
GPG_KEYS

1A4E8B7277C42E53DBA9C7B9BCAA30EA9C0D5763 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PHPIZE_DEPS

autoconf file g++ gcc libc-dev make pkg-config re2c

PHP_ASC_URL

https://secure.php.net/get/php-7.0.17.tar.xz.asc/from/this/mirror

PHP_CFLAGS

-fstack-protector-strong -fpic -fpie -O2

PHP_CPPFLAGS

-fstack-protector-strong -fpic -fpie -O2

PHP_EXTRA_CONFIGURE_ARGS

--enable-maintainer-zts

PHP_INI_DIR

/usr/local/etc/php

PHP_LDFLAGS

-Wl,-O1 -Wl,--hash-style=both -pie

PHP_MD5

549df69a7a3c79d49fcafe2097579d9e

PHP_SHA256

471c16fcdd6a5e1a37199e97bcaeea6117626229785185be7532aaa7c6ee04be

PHP_URL

https://secure.php.net/get/php-7.0.17.tar.xz/from/this/mirror

PHP_VERSION

7.0.17


Layers

[#000] sha256:6d827a3ef358f4fa21ef8251f95492e667da826653fd43641cef5a877dc03a70 - 34.05% (49.1 MB)

[#001] sha256:87fe8fbc743a3c84e20d43e0182ec42fa98d63745f81abae17307558e542e3cf - 51.42% (74.1 MB)

[#002] sha256:f6d1a8d304ab1e86f676f962451a74e23764dcc6c68021f0ad77f3ace17f4c5f - 0.0% (180 Bytes)

[#003] sha256:983aaa982bfa70cd5cad7e0e2259d5a9b73d866fd45e2ecdcaba269c112ac1db - 8.41% (12.1 MB)

[#004] sha256:23b1c65cff55128fe3feffaf804830795a4caef3899430b0142c11f73acb508d - 0.0% (490 Bytes)

[#005] sha256:ea568615f268a566a24264bb58525b138038a11edd059a84b9b5294d4e77972c - 6.12% (8.82 MB)

[#006] sha256:31ab5b34059a4b9687026803132b7d2ec0beee78e28a19395e7292c78a4e6234 - 0.0% (1.96 KB)


History
2017-03-21 18:28:51 UTC

/bin/sh -c #(nop) ADD file:4eedf861fb567fffb2694b65ebdd58d5e371a2c28c3863f363f333cb34e5eb7b in /

2017-03-21 18:29:05 UTC

/bin/sh -c #(nop) CMD ["/bin/bash"]

2017-03-21 22:55:44 UTC

/bin/sh -c #(nop) ENV PHPIZE_DEPS=autoconf file g++ gcc libc-dev make pkg-config re2c

2017-03-21 22:56:13 UTC

/bin/sh -c 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/*

2017-03-21 22:56:14 UTC

/bin/sh -c #(nop) ENV PHP_INI_DIR=/usr/local/etc/php

2017-03-21 22:56:15 UTC

/bin/sh -c mkdir -p $PHP_INI_DIR/conf.d

2017-03-21 23:05:53 UTC

/bin/sh -c #(nop) ENV PHP_EXTRA_CONFIGURE_ARGS=--enable-maintainer-zts

2017-03-21 23:05:53 UTC

/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2

2017-03-21 23:05:54 UTC

/bin/sh -c #(nop) ENV PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2

2017-03-21 23:05:54 UTC

/bin/sh -c #(nop) ENV PHP_LDFLAGS=-Wl,-O1 -Wl,--hash-style=both -pie

2017-03-21 23:33:28 UTC

/bin/sh -c #(nop) ENV GPG_KEYS=1A4E8B7277C42E53DBA9C7B9BCAA30EA9C0D5763 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3

2017-03-21 23:33:29 UTC

/bin/sh -c #(nop) ENV PHP_VERSION=7.0.17

2017-03-21 23:33:29 UTC

/bin/sh -c #(nop) ENV PHP_URL=https://secure.php.net/get/php-7.0.17.tar.xz/from/this/mirror PHP_ASC_URL=https://secure.php.net/get/php-7.0.17.tar.xz.asc/from/this/mirror

2017-03-21 23:33:30 UTC

/bin/sh -c #(nop) ENV PHP_SHA256=471c16fcdd6a5e1a37199e97bcaeea6117626229785185be7532aaa7c6ee04be PHP_MD5=549df69a7a3c79d49fcafe2097579d9e

2017-03-21 23:33:39 UTC

/bin/sh -c 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

2017-03-21 23:33:39 UTC

/bin/sh -c #(nop) COPY file:207c686e3fed4f71f8a7b245d8dcae9c9048d276a326d82b553c12a90af0c0ca in /usr/local/bin/

2017-03-21 23:37:11 UTC

/bin/sh -c 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 && ./configure --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 $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 && docker-php-source delete && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false $buildDeps

2017-03-21 23:37:13 UTC

/bin/sh -c #(nop) COPY multi:b2b2a1a4e3c0f0bb8ebdcd527fca158bfce5138468926263f86e5bb0cb41970f in /usr/local/bin/

2017-03-21 23:37:13 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]

2017-03-21 23:37:13 UTC

/bin/sh -c #(nop) CMD ["php" "-a"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete