Namespace
vulhub
Image / Tag
php:5.3-fpm
Content Digest
sha256:08aa17dd380921cfcf4b6c76f6302edcb65432f2fa07e08c6aac6e4ac23a3b2e
Details
Created

2018-05-07 13:04:21 UTC

Size

152 MB

Content Digest
Labels
  • maintainer
    root <root@leavesongs.com>

Environment
GPG_KEYS

0B96609E270F565C13292B24C13C70B87267B52D 0A95E9A026542D53835E3F3A7DEC4E69FC9C83D7 0E604491

PATH

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

PHP_INI_DIR

/usr/local/etc/php

PHP_VERSION

5.3.29


Layers

[#000] sha256:693502eb7dfbc6b94964ae66ebc72d3e32facd981c72995b09794f1e87bac184 - 32.32% (49 MB)

[#001] sha256:38ab3559b233457ff6b900636b236cfe4c1018f3bd03e08085a71cabf7b508a9 - 10.24% (15.5 MB)

[#002] sha256:7aa60cb5ab8e5dc8c64d52a37796aa5decd4d3683e5effc50ef2540e46140aa6 - 40.64% (61.6 MB)

[#003] sha256:f2547afcea6558ace2da1b8384514d35d43e2fd31d809c8a0750d08f36715ea3 - 0.0% (187 Bytes)

[#004] sha256:e6616870b90a9a6653324ae851d931684d6b2a8930e112b96096b9646ed8cf81 - 0.02% (24.1 KB)

[#005] sha256:6c5de54133324e2a7b517816add4b02040221687ac6a45f2442ae36406cb1ae1 - 2.54% (3.85 MB)

[#006] sha256:9a4334a7432435b0f7ef7a2b81445406a01e7abe97ec546c160276d2a6a3eedf - 14.24% (21.6 MB)

[#007] sha256:487edc02ab6f3c649b9fe79fa52c41771c7f76710e557c6d3b036aab993d4483 - 0.0% (950 Bytes)

[#008] sha256:010f7ac7fd24a832b31ffa990531940c9f77f1f96d0e4b3846e2ad9060227836 - 0.0% (127 Bytes)

[#009] sha256:e6c097d1528041e1ad00b24029a0a47a174ceaef3faf12844b1f27fa4d4c0815 - 0.0% (7.1 KB)

[#010] sha256:cb059546b0cb3ba62b09f43de1d37d98de73f5b3b158af869676562339be4de6 - 0.0% (6.91 KB)


History
2017-02-27 20:34:36 UTC

/bin/sh -c #(nop) ADD file:41ac8d85ee35954bf6c8353d9681a045ba260aa9a96dbbded7bcd6e37ee49bea in /

2017-02-27 20:34:37 UTC

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

2017-03-20 16:36:07 UTC

/bin/sh -c #(nop) MAINTAINER https://github.com/helderco/

2017-03-20 16:36:57 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl librecode0 libmysqlclient-dev libsqlite3-0 libxml2 && apt-get clean && rm -r /var/lib/apt/lists/*

2017-03-20 16:37:51 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends autoconf file g++ gcc libc-dev make pkg-config re2c && apt-get clean && rm -r /var/lib/apt/lists/*

2017-03-20 16:37:53 UTC

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

2017-03-20 16:37:56 UTC

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

2017-03-20 16:37:59 UTC

/bin/sh -c #(nop) ENV GPG_KEYS=0B96609E270F565C13292B24C13C70B87267B52D 0A95E9A026542D53835E3F3A7DEC4E69FC9C83D7 0E604491

2017-03-20 16:38:03 UTC

/bin/sh -c set -xe && for key in $GPG_KEYS; do gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; done

2017-03-20 16:46:04 UTC

/bin/sh -c OPENSSL_VERSION="1.0.2k" && cd /tmp && mkdir openssl && curl -sL "https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz" -o openssl.tar.gz && curl -sL "https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz.asc" -o openssl.tar.gz.asc && gpg --verify openssl.tar.gz.asc && tar -xzf openssl.tar.gz -C openssl --strip-components=1 && cd /tmp/openssl && ./config && make && make install && rm -rf /tmp/*

2017-03-20 16:46:06 UTC

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

2017-03-20 16:54:07 UTC

/bin/sh -c buildDeps=" autoconf2.13 libcurl4-openssl-dev libreadline6-dev librecode-dev libsqlite3-dev libssl-dev libxml2-dev xz-utils " && set -x && apt-get update && apt-get install -y $buildDeps --no-install-recommends && rm -rf /var/lib/apt/lists/* && curl -SL "http://php.net/get/php-$PHP_VERSION.tar.xz/from/this/mirror" -o php.tar.xz && curl -SL "http://php.net/get/php-$PHP_VERSION.tar.xz.asc/from/this/mirror" -o php.tar.xz.asc && gpg --verify php.tar.xz.asc && mkdir -p /usr/src/php && tar -xof php.tar.xz -C /usr/src/php --strip-components=1 && rm php.tar.xz* && cd /usr/src/php && ./configure --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data --disable-cgi --enable-mysqlnd --with-mysql --with-curl --with-openssl=/usr/local/ssl --with-readline --with-recode --with-zlib && make -j"$(nproc)" && make install && { find /usr/local/bin /usr/local/sbin -type f -executable -exec strip --strip-all '{}' + || true; } && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false $buildDeps && make clean

2017-03-20 16:54:12 UTC

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

2017-03-20 16:54:16 UTC

/bin/sh -c #(nop) WORKDIR /var/www/html

2017-03-20 16:54:21 UTC

/bin/sh -c set -ex && cd /usr/local/etc && if [ -d php-fpm.d ]; then sed 's!=NONE/!=!g' php-fpm.conf.default | tee php-fpm.conf > /dev/null; cp php-fpm.d/www.conf.default php-fpm.d/www.conf; else mkdir php-fpm.d; cp php-fpm.conf.default php-fpm.d/www.conf; { echo '[global]'; echo 'include=etc/php-fpm.d/*.conf'; } | tee php-fpm.conf; fi && { echo '[global]'; echo 'error_log = /proc/self/fd/2'; echo; echo '[www]'; echo '; if we send this to /proc/self/fd/1, it never appears'; echo 'access.log = /proc/self/fd/2'; echo; echo '; Ensure worker stdout and stderr are sent to the main error log.'; echo 'catch_workers_output = yes'; } | tee php-fpm.d/docker.conf && { echo '[global]'; echo 'daemonize = no'; echo; echo '[www]'; echo 'listen = 9000'; } | tee php-fpm.d/zz-docker.conf

2017-03-20 16:54:26 UTC

/bin/sh -c sed -i -e "" /usr/local/etc/php-fpm.d/www.conf

2017-03-20 16:54:30 UTC

/bin/sh -c #(nop) EXPOSE 9000/tcp

2017-03-20 16:54:35 UTC

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

2018-05-07 13:04:21 UTC

/bin/sh -c #(nop) LABEL maintainer=root <root@leavesongs.com>

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