| created |
2018-12-21T00:21:10.984083489Z
|
| created_by |
/bin/sh -c #(nop) ADD file:1c654f8c89128c1ac8363b251cb5e1e7d9326e430ae2740963f77cf6726aee0b in /
|
|
| created |
2018-12-21T00:21:11.127085418Z
|
| created_by |
/bin/sh -c #(nop) CMD ["/bin/sh"]
|
| empty_layer |
true
|
|
| created |
2018-12-23T01:27:01.93515064Z
|
| created_by |
/bin/sh -c #(nop) ARG VCS_REF
|
| empty_layer |
true
|
|
| created |
2018-12-23T01:27:02.27868349Z
|
| created_by |
/bin/sh -c #(nop) ARG BUILD_DATE
|
| empty_layer |
true
|
|
| created |
2018-12-23T01:27:02.738144834Z
|
| created_by |
/bin/sh -c #(nop) ARG PHP_VERSION=7.2.3
|
| empty_layer |
true
|
|
| created |
2018-12-23T01:27:03.031015269Z
|
| created_by |
/bin/sh -c #(nop) ARG PHP_SHA256=b3a94f1b562f413c0b96f54bc309706d83b29ac65d9b172bc7ed9fb40a5e651f
|
| empty_layer |
true
|
|
| created |
2018-12-23T01:27:03.360259634Z
|
| created_by |
/bin/sh -c #(nop) LABEL maintainer=James Brink, brink.james@gmail.com decription=PHP 7.2.3} with Apache version=7.2.3 org.label-schema.name=php org.label-schema.build-date=2018-12-23T01:26:58Z org.label-schema.vcs-ref=72234ce org.label-schema.vcs-url=https://github.com/jamesbrink/docker-php org.label-schema.schema-version=1.0.0-rc1
|
| empty_layer |
true
|
|
| created |
2018-12-23T01:27:03.92780344Z
|
| created_by |
/bin/sh -c #(nop) COPY dir:e09562719dd33f193808272b4760da2dd98c2fb9c818e3c952db428246f97e32 in /
|
|
| created |
2018-12-23T01:27:04.22516339Z
|
| created_by |
/bin/sh -c #(nop) ENV PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 PHP_CPPFLAGS= PHP_LDFLAGS=-Wl,-O1 -Wl,--hash-style=both -pie GPG_KEYS=1A4E8B7277C42E53DBA9C7B9BCAA30EA9C0D5763 6E4F6AB321FDC07F2C332E3AC2BF0BC433CFC8B3 A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0 528995BFEDFBA7191D46839EF9BA0ADA31CBD89E 1729F83938DA44E27BA0F4D3DBDB397470D12172 B1B44D8F021E4E2D6021E995DC9FF8D3EE5AF27F PHP_VERSION=7.2.3 PHP_URL=https://secure.php.net/get/php-7.2.3.tar.xz/from/this/mirror PHP_ASC_URL=https://secure.php.net/get/php-7.2.3.tar.xz.asc/from/this/mirror PHP_SHA256=b3a94f1b562f413c0b96f54bc309706d83b29ac65d9b172bc7ed9fb40a5e651f PHP_INI_DIR=/usr/local/etc/php APACHE_LOG_LEVEL=warn
|
| empty_layer |
true
|
|
| created |
2018-12-23T01:46:39.838620428Z
|
| created_by |
|2 BUILD_DATE=2018-12-23T01:26:58Z VCS_REF=72234ce /bin/sh -c set -xe; apk add --update --no-cache --virtual .persistent-deps apache2 ca-certificates curl libpcre16 libpcre32 libpcrecpp libressl tar wget xz; update-ca-certificates; mkdir -p $PHP_INI_DIR/conf.d; apk add --update --no-cache --virtual .fetch-deps gnupg; 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 ipv4.pool.sks-keyservers.net --recv-keys "$key"; done; gpg --batch --verify php.tar.xz.asc php.tar.xz; rm -rf "$GNUPGHOME"; fi; apk del .fetch-deps; apk add --update --no-cache --virtual .build-deps apache2-dev autoconf coreutils curl-dev dpkg-dev dpkg file g++ gcc libc-dev libedit-dev libressl-dev libxml2-dev make pcre-dev pkgconf re2c sqlite-dev; 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)" ./configure --build="$gnuArch" --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --with-apxs2=/usr/bin/apxs --disable-cgi --enable-ftp --enable-mbstring --enable-mysqlnd --with-curl --with-libedit --with-openssl --with-zlib --with-pcre-regex=/usr $(test "$gnuArch" = 's390x-linux-gnu' && echo '--without-pcre-jit') $PHP_EXTRA_CONFIGURE_ARGS; make -j "$(nproc)"; make install; { find /usr/local/bin /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; }; make clean; cd /; docker-php-source delete; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --update --no-cache --virtual .php-rundeps $runDeps; apk del .build-deps; pecl update-channels; rm -rf /tmp/pear ~/.pearrc; mkdir /run/apache2; rm /var/www/localhost/htdocs/index.html
|
|
| created |
2018-12-23T01:46:40.111631843Z
|
| created_by |
/bin/sh -c #(nop) ENTRYPOINT ["docker-php-entrypoint"]
|
| empty_layer |
true
|
|
| created |
2018-12-23T01:46:40.258168807Z
|
| created_by |
/bin/sh -c #(nop) CMD ["/usr/local/bin/apache2-foreground"]
|
| empty_layer |
true
|
|
| created |
2019-03-19T19:14:53.209735727Z
|
| created_by |
/bin/sh -c #(nop) WORKDIR /var/www/localhost/htdocs/
|
| empty_layer |
true
|
|
| created |
2019-06-07T14:27:18.835631793Z
|
| created_by |
/bin/sh -c apk --no-cache add php7-dev bind-tools
|
|
| created |
2019-06-07T14:28:07.451715777Z
|
| created_by |
/bin/sh -c apk add --update autoconf file g++ gcc libc-dev make pkgconf re2c zlib-dev libmemcached-dev && cd /tmp && wget https://github.com/php-memcached-dev/php-memcached/archive/php7.zip && unzip php7.zip && cd php-memcached-php7 && phpize7 || return 1 && ./configure --prefix=/usr --disable-memcached-sasl --with-php-config=php-config7 || return 1 && make || return 1 && make INSTALL_ROOT="" install || return 1 && install -d "/etc/php7/conf.d" || return 1 && echo "extension=memcached.so" > /etc/php7/conf.d/20_memcached.ini && cd /tmp && rm -rf php-memcached-php7 && rm php7.zip
|
|
| created |
2019-06-07T14:53:03.711480703Z
|
| created_by |
/bin/sh -c #(nop) COPY dir:bcb911eac55588abbbe7e28a10a5435bf02f3177321f7509aac66e2c8ebfa29b in /var/www/localhost/htdocs/
|
|
| created |
2019-06-07T14:53:05.418548927Z
|
| created_by |
/bin/sh -c chown apache:apache -R /var/www/localhost/htdocs/
|
|