Namespace
library
Image / Tag
php:7.1.0RC4-alpine
Content Digest
sha256:1cf358dd88f055dbaa6b1b36afce8ece2d6698675c38e61d53fd65468700e988
Details
Created

2016-10-19 22:32:42 UTC

Size

26.9 MB

Content Digest
Environment
GPG_KEYS

A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0

PATH

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

PHPIZE_DEPS

autoconf file g++ gcc libc-dev make pkgconf re2c

PHP_ASC_URL

PHP_INI_DIR

/usr/local/etc/php

PHP_MD5

3493df23aa02af833198df94227cb6d9

PHP_SHA256

aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258

PHP_URL

http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz

PHP_VERSION

7.1.0RC4


Layers

[#000] sha256:3690ec4760f95690944da86dc4496148a63d85c9e3100669a318110092f6862f - 8.21% (2.21 MB)

[#001] sha256:67654b7bd8a6f817e849f77cd102331617f4e2394feeae4f77f8683b9b466ed9 - 3.72% (1020 KB)

[#002] sha256:b6c453327105c5d394a206069893aa1527b7cc4e58699b4a4b0c2453f5b02a7f - 0.0% (1.24 KB)

[#003] sha256:481e68959c15a56029b84021fca8cce378aaa0aa08837e08878bbddc694e798c - 0.0% (166 Bytes)

[#004] sha256:37f8545f728173369c5000598e04327eaa71173c1e2a32f32572b0a4597b9a7e - 45.66% (12.3 MB)

[#005] sha256:70f6ca3e335b724e9910819e32b093adbb53f4a8c6b09478232a5aaeb360b06e - 0.0% (482 Bytes)

[#006] sha256:c1026d3d1ef3c73f5bb79c322dcb3ec8d688943719a2ea74c0f470cf76268c3b - 42.4% (11.4 MB)

[#007] sha256:04f61a0c9d9c2c4fbb462d392ecb29543752f568d9bbb8a724709188394a4957 - 0.01% (1.78 KB)


History
2016-10-18 20:31:22 UTC

/bin/sh -c #(nop) ADD file:7afbc23fda8b0b3872623c16af8e3490b2cee951aed14b3794389c2f946cc8c7 in /

2016-10-18 21:17:33 UTC

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

2016-10-18 21:17:35 UTC

/bin/sh -c apk add --no-cache --virtual .persistent-deps ca-certificates curl tar xz

2016-10-18 21:17:36 UTC

/bin/sh -c set -x && addgroup -g 82 -S www-data && adduser -u 82 -D -S -G www-data www-data

2016-10-18 21:17:36 UTC

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

2016-10-18 21:17:37 UTC

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

2016-10-18 21:17:37 UTC

/bin/sh -c #(nop) ENV GPG_KEYS=A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0

2016-10-19 22:28:30 UTC

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

2016-10-19 22:28:31 UTC

/bin/sh -c #(nop) ENV PHP_URL=http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz PHP_ASC_URL=

2016-10-19 22:28:31 UTC

/bin/sh -c #(nop) ENV PHP_SHA256=aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258 PHP_MD5=3493df23aa02af833198df94227cb6d9

2016-10-19 22:28:37 UTC

/bin/sh -c set -xe; apk add --no-cache --virtual .fetch-deps gnupg openssl ; 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; apk del .fetch-deps

2016-10-19 22:28:37 UTC

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

2016-10-19 22:32:40 UTC

/bin/sh -c set -xe && apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev libedit-dev libxml2-dev openssl-dev sqlite-dev && 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 "$(getconf _NPROCESSORS_ONLN)" && make install && { find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; } && make clean && docker-php-source delete && runDeps="$( scanelf --needed --nobanner --recursive /usr/local | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && apk add --no-cache --virtual .php-rundeps $runDeps && apk del .build-deps

2016-10-19 22:32:41 UTC

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

2016-10-19 22:32:42 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