Namespace
library
Image / Tag
httpd:2.4.29-alpine
Content Digest
sha256:061917e1a2119c2f1a85f787d36fc4d38faab86193144de20107eabbacacf138
Details
Created

2018-01-26 22:42:36 UTC

Size

27.5 MB

Content Digest
Environment
APACHE_DIST_URLS

https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

HTTPD_PATCHES

HTTPD_PREFIX

/usr/local/apache2

HTTPD_SHA256

777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

HTTPD_VERSION

2.4.29

PATH

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


Layers

[#000] sha256:ffe4428ef008913a7ec63449e4ad3aa536b26103943146a302591dfceb157d2f - 7.1% (1.95 MB)

[#001] sha256:5f4fe786260f2bd2710289e7c9487b423cb252a691fa501759b0768516122869 - 0.0% (176 Bytes)

[#002] sha256:d2a3535715a0db53f9bb26746e89245b079cccc0dbb13c4241823cbc24cf517f - 0.0% (1.22 KB)

[#003] sha256:13264a522397c6aca748dac21af8e3e857d72f430cb6888757921082d7cef65d - 0.0% (148 Bytes)

[#004] sha256:e96757d62c45a3a47b773a73a0b3ffcb0e15e3cd2706d49f022b12605e210cb2 - 92.89% (25.5 MB)

[#005] sha256:58b579b0da29a1509b948de5bb1a9168c75fa5c7472230eda3fa33c30a38c8ea - 0.0% (293 Bytes)


History
2017-10-25 23:32:08 UTC

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

2017-10-25 23:32:08 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:32:08 UTC

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

2017-10-26 21:28:34 UTC

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

2017-10-26 21:28:35 UTC

/bin/sh -c #(nop) ENV HTTPD_PREFIX=/usr/local/apache2

2017-10-26 21:28:35 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/apache2/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2017-10-26 21:28:35 UTC

/bin/sh -c mkdir -p "$HTTPD_PREFIX" && chown www-data:www-data "$HTTPD_PREFIX"

2017-10-26 21:28:35 UTC

/bin/sh -c #(nop) WORKDIR /usr/local/apache2

2017-10-26 21:28:36 UTC

/bin/sh -c #(nop) ENV HTTPD_VERSION=2.4.29

2017-10-26 21:28:36 UTC

/bin/sh -c #(nop) ENV HTTPD_SHA256=777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

2017-10-26 21:28:36 UTC

/bin/sh -c #(nop) ENV HTTPD_PATCHES=

2017-10-26 21:28:36 UTC

/bin/sh -c #(nop) ENV APACHE_DIST_URLS=https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

2018-01-26 22:42:35 UTC

/bin/sh -c set -eux; runDeps=' apr-dev apr-util-dev apr-util-ldap perl '; apk add --no-cache --virtual .build-deps $runDeps ca-certificates coreutils dpkg-dev dpkg gcc gnupg libc-dev libressl libressl-dev libxml2-dev lua-dev make nghttp2-dev pcre-dev tar zlib-dev ; ddist() { local f="$1"; shift; local distFile="$1"; shift; local success=; local distUrl=; for distUrl in $APACHE_DIST_URLS; do if wget -O "$f" "$distUrl$distFile"; then success=1; break; fi; done; [ -n "$success" ]; }; ddist 'httpd.tar.bz2' "httpd/httpd-$HTTPD_VERSION.tar.bz2"; echo "$HTTPD_SHA256 *httpd.tar.bz2" | sha256sum -c -; ddist 'httpd.tar.bz2.asc' "httpd/httpd-$HTTPD_VERSION.tar.bz2.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys A93D62ECC3C8EA12DB220EC934EA76E6791485A8; gpg --batch --verify httpd.tar.bz2.asc httpd.tar.bz2; rm -rf "$GNUPGHOME" httpd.tar.bz2.asc; mkdir -p src; tar -xf httpd.tar.bz2 -C src --strip-components=1; rm httpd.tar.bz2; cd src; patches() { while [ "$#" -gt 0 ]; do local patchFile="$1"; shift; local patchSha256="$1"; shift; ddist "$patchFile" "httpd/patches/apply_to_$HTTPD_VERSION/$patchFile"; echo "$patchSha256 *$patchFile" | sha256sum -c -; patch -p0 < "$patchFile"; rm -f "$patchFile"; done; }; patches $HTTPD_PATCHES; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --prefix="$HTTPD_PREFIX" --enable-mods-shared=reallyall --enable-mpms-shared=all ; make -j "$(nproc)"; make install; cd ..; rm -r src man manual; sed -ri -e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' -e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' "$HTTPD_PREFIX/conf/httpd.conf"; runDeps="$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 --virtual .httpd-rundeps $runDeps; apk del .build-deps

2018-01-26 22:42:35 UTC

/bin/sh -c #(nop) COPY file:761e313354b918b6cd7ea99975a4f6b53ff5381ba689bab2984aec4dab597215 in /usr/local/bin/

2018-01-26 22:42:36 UTC

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

2018-01-26 22:42:36 UTC

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

Details
Created

2018-01-26 02:15:18 UTC

Size

26.7 MB

Content Digest
Environment
APACHE_DIST_URLS

https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

HTTPD_PATCHES

HTTPD_PREFIX

/usr/local/apache2

HTTPD_SHA256

777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

HTTPD_VERSION

2.4.29

PATH

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


Layers

[#000] sha256:605ce1bd3f3164f2949a30501cc596f52a72de05da1306ab360055f0d7130c32 - 7.13% (1.9 MB)

[#001] sha256:6e4ededbced2205702d8b05d0304ce76d27e0c71988fbceb45edee484b1cf241 - 0.0% (1.22 KB)

[#002] sha256:03b3c72c99621924fbdc789d9209352fb791ee0983e06fafcfbafd0baea332d6 - 0.0% (146 Bytes)

[#003] sha256:3661f52621d65ed732942049ea4402bce7a23c5e3b2df1cc0bcc1cbad61b46ff - 92.87% (24.8 MB)

[#004] sha256:2ac1a25cca323413ba77abf5cb4106699c8b4a340226eeaf2cf2e42f9c22de58 - 0.0% (293 Bytes)


History
2018-01-09 21:10:38 UTC

/bin/sh -c #(nop) ADD file:6edc55fb54ec9fc3658c8f5176a70e792103a516154442f94fed8e0290e4960e in /

2018-01-09 21:10:38 UTC

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

2018-01-09 22:03:31 UTC

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

2018-01-09 22:03:31 UTC

/bin/sh -c #(nop) ENV HTTPD_PREFIX=/usr/local/apache2

2018-01-09 22:03:31 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/apache2/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2018-01-09 22:03:32 UTC

/bin/sh -c mkdir -p "$HTTPD_PREFIX" && chown www-data:www-data "$HTTPD_PREFIX"

2018-01-09 22:03:32 UTC

/bin/sh -c #(nop) WORKDIR /usr/local/apache2

2018-01-09 22:03:32 UTC

/bin/sh -c #(nop) ENV HTTPD_VERSION=2.4.29

2018-01-09 22:03:33 UTC

/bin/sh -c #(nop) ENV HTTPD_SHA256=777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

2018-01-09 22:03:33 UTC

/bin/sh -c #(nop) ENV HTTPD_PATCHES=

2018-01-09 22:03:33 UTC

/bin/sh -c #(nop) ENV APACHE_DIST_URLS=https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

2018-01-26 02:15:18 UTC

/bin/sh -c set -eux; runDeps=' apr-dev apr-util-dev apr-util-ldap perl '; apk add --no-cache --virtual .build-deps $runDeps ca-certificates coreutils dpkg-dev dpkg gcc gnupg libc-dev libressl libressl-dev libxml2-dev lua-dev make nghttp2-dev pcre-dev tar zlib-dev ; ddist() { local f="$1"; shift; local distFile="$1"; shift; local success=; local distUrl=; for distUrl in $APACHE_DIST_URLS; do if wget -O "$f" "$distUrl$distFile"; then success=1; break; fi; done; [ -n "$success" ]; }; ddist 'httpd.tar.bz2' "httpd/httpd-$HTTPD_VERSION.tar.bz2"; echo "$HTTPD_SHA256 *httpd.tar.bz2" | sha256sum -c -; ddist 'httpd.tar.bz2.asc' "httpd/httpd-$HTTPD_VERSION.tar.bz2.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys A93D62ECC3C8EA12DB220EC934EA76E6791485A8; gpg --batch --verify httpd.tar.bz2.asc httpd.tar.bz2; rm -rf "$GNUPGHOME" httpd.tar.bz2.asc; mkdir -p src; tar -xf httpd.tar.bz2 -C src --strip-components=1; rm httpd.tar.bz2; cd src; patches() { while [ "$#" -gt 0 ]; do local patchFile="$1"; shift; local patchSha256="$1"; shift; ddist "$patchFile" "httpd/patches/apply_to_$HTTPD_VERSION/$patchFile"; echo "$patchSha256 *$patchFile" | sha256sum -c -; patch -p0 < "$patchFile"; rm -f "$patchFile"; done; }; patches $HTTPD_PATCHES; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --prefix="$HTTPD_PREFIX" --enable-mods-shared=reallyall --enable-mpms-shared=all ; make -j "$(nproc)"; make install; cd ..; rm -r src man manual; sed -ri -e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' -e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' "$HTTPD_PREFIX/conf/httpd.conf"; runDeps="$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 --virtual .httpd-rundeps $runDeps; apk del .build-deps

2018-01-26 02:15:18 UTC

/bin/sh -c #(nop) COPY file:761e313354b918b6cd7ea99975a4f6b53ff5381ba689bab2984aec4dab597215 in /usr/local/bin/

2018-01-26 02:15:18 UTC

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

2018-01-26 02:15:18 UTC

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

Details
Created

2018-03-08 14:56:58 UTC

Size

26.1 MB

Content Digest
Environment
APACHE_DIST_URLS

https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

HTTPD_PATCHES

HTTPD_PREFIX

/usr/local/apache2

HTTPD_SHA256

777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

HTTPD_VERSION

2.4.29

PATH

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


Layers

[#000] sha256:0864efeeb5cb8dca4eb53e5d6fd38486daee80fa326fe36d1ad254f8fa6bb310 - 7.19% (1.87 MB)

[#001] sha256:448db471625a0828399cd99cb762a514458df032a36e5a23df975081ab87bc41 - 0.0% (175 Bytes)

[#002] sha256:4bea28500ab833b3fdcb199e0219565f905265257bb5e9fa172b93fae1026325 - 0.0% (1.25 KB)

[#003] sha256:db06ed586a38735e943cb8220fea17cb3597337a86e4391813837f34efe50744 - 0.0% (178 Bytes)

[#004] sha256:b172e2caaf21311d5f1faf320e1697373f885e1efcef4c0ff6e7c522b1cc0779 - 92.8% (24.2 MB)

[#005] sha256:c32b826311927d253013f636809910bd677a10122f11f3b2a0619d2d129a1140 - 0.0% (293 Bytes)


History
2018-02-26 23:48:26 UTC

/bin/sh -c #(nop) ADD file:009348222efb3c4ca2e53c387fb34c488679ca07db39525a6c5cc214e46abffd in /

2018-02-26 23:48:27 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2018-02-26 23:48:28 UTC

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

2018-03-02 14:55:24 UTC

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

2018-03-02 14:55:24 UTC

/bin/sh -c #(nop) ENV HTTPD_PREFIX=/usr/local/apache2

2018-03-02 14:55:25 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/apache2/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2018-03-02 14:55:25 UTC

/bin/sh -c mkdir -p "$HTTPD_PREFIX" && chown www-data:www-data "$HTTPD_PREFIX"

2018-03-02 14:55:26 UTC

/bin/sh -c #(nop) WORKDIR /usr/local/apache2

2018-03-02 14:55:26 UTC

/bin/sh -c #(nop) ENV HTTPD_VERSION=2.4.29

2018-03-02 14:55:26 UTC

/bin/sh -c #(nop) ENV HTTPD_SHA256=777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

2018-03-02 14:55:26 UTC

/bin/sh -c #(nop) ENV HTTPD_PATCHES=

2018-03-02 14:55:26 UTC

/bin/sh -c #(nop) ENV APACHE_DIST_URLS=https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

2018-03-08 14:56:57 UTC

/bin/sh -c set -eux; runDeps=' apr-dev apr-util-dev apr-util-ldap perl '; apk add --no-cache --virtual .build-deps $runDeps ca-certificates coreutils dpkg-dev dpkg gcc gnupg libc-dev libressl libressl-dev libxml2-dev lua-dev make nghttp2-dev pcre-dev tar zlib-dev ; ddist() { local f="$1"; shift; local distFile="$1"; shift; local success=; local distUrl=; for distUrl in $APACHE_DIST_URLS; do if wget -O "$f" "$distUrl$distFile"; then success=1; break; fi; done; [ -n "$success" ]; }; ddist 'httpd.tar.bz2' "httpd/httpd-$HTTPD_VERSION.tar.bz2"; echo "$HTTPD_SHA256 *httpd.tar.bz2" | sha256sum -c -; ddist 'httpd.tar.bz2.asc' "httpd/httpd-$HTTPD_VERSION.tar.bz2.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys A93D62ECC3C8EA12DB220EC934EA76E6791485A8; gpg --batch --verify httpd.tar.bz2.asc httpd.tar.bz2; rm -rf "$GNUPGHOME" httpd.tar.bz2.asc; mkdir -p src; tar -xf httpd.tar.bz2 -C src --strip-components=1; rm httpd.tar.bz2; cd src; patches() { while [ "$#" -gt 0 ]; do local patchFile="$1"; shift; local patchSha256="$1"; shift; ddist "$patchFile" "httpd/patches/apply_to_$HTTPD_VERSION/$patchFile"; echo "$patchSha256 *$patchFile" | sha256sum -c -; patch -p0 < "$patchFile"; rm -f "$patchFile"; done; }; patches $HTTPD_PATCHES; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --prefix="$HTTPD_PREFIX" --enable-mods-shared=reallyall --enable-mpms-shared=all ; make -j "$(nproc)"; make install; cd ..; rm -r src man manual; sed -ri -e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' -e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' "$HTTPD_PREFIX/conf/httpd.conf"; runDeps="$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 --virtual .httpd-rundeps $runDeps; apk del .build-deps

2018-03-08 14:56:57 UTC

/bin/sh -c #(nop) COPY file:761e313354b918b6cd7ea99975a4f6b53ff5381ba689bab2984aec4dab597215 in /usr/local/bin/

2018-03-08 14:56:58 UTC

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

2018-03-08 14:56:58 UTC

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

Details
Created

2018-01-26 12:25:42 UTC

Size

27 MB

Content Digest
Environment
APACHE_DIST_URLS

https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

HTTPD_PATCHES

HTTPD_PREFIX

/usr/local/apache2

HTTPD_SHA256

777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

HTTPD_VERSION

2.4.29

PATH

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


Layers

[#000] sha256:bb473f0ebc12fde1bd45c1bd3c46f2d3aab367b1b7739464771455b9972f7894 - 6.75% (1.83 MB)

[#001] sha256:75ff6b7ff3a208b8399e701e7ea1b7edbdc654c8c60d33c6f09a7803e2dda776 - 0.0% (176 Bytes)

[#002] sha256:75bedd5e748c14d9838c8340a9411eeeb1c13f3f211b75daac64740089a03b3c - 0.0% (1.23 KB)

[#003] sha256:dc3029d4786673b7b37f909532f9d107690813e4739fc0473c142c940d5d1bfe - 0.0% (146 Bytes)

[#004] sha256:b3b26d66047397c4f33987635c77a95408f7ed7ad271a956e4f01d9cc38f9d39 - 93.24% (25.2 MB)

[#005] sha256:4bcc5216a7aa64cf496169e032acdc3ee8ac3bedf3dbfc03ee1c9f3550414200 - 0.0% (293 Bytes)


History
2017-10-25 23:28:58 UTC

/bin/sh -c #(nop) ADD file:45b5d3b8d5490ba7edfca2cf6f54cdcf49c772b0b3a2302ce69a7af061007aa4 in /

2017-10-25 23:28:59 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:28:59 UTC

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

2017-10-26 11:20:08 UTC

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

2017-10-26 11:20:09 UTC

/bin/sh -c #(nop) ENV HTTPD_PREFIX=/usr/local/apache2

2017-10-26 11:20:09 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/apache2/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2017-10-26 11:20:11 UTC

/bin/sh -c mkdir -p "$HTTPD_PREFIX" && chown www-data:www-data "$HTTPD_PREFIX"

2017-10-26 11:20:11 UTC

/bin/sh -c #(nop) WORKDIR /usr/local/apache2

2017-10-26 11:20:12 UTC

/bin/sh -c #(nop) ENV HTTPD_VERSION=2.4.29

2017-10-26 11:20:12 UTC

/bin/sh -c #(nop) ENV HTTPD_SHA256=777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

2017-10-26 11:20:13 UTC

/bin/sh -c #(nop) ENV HTTPD_PATCHES=

2017-10-26 11:20:14 UTC

/bin/sh -c #(nop) ENV APACHE_DIST_URLS=https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

2018-01-26 12:25:40 UTC

/bin/sh -c set -eux; runDeps=' apr-dev apr-util-dev apr-util-ldap perl '; apk add --no-cache --virtual .build-deps $runDeps ca-certificates coreutils dpkg-dev dpkg gcc gnupg libc-dev libressl libressl-dev libxml2-dev lua-dev make nghttp2-dev pcre-dev tar zlib-dev ; ddist() { local f="$1"; shift; local distFile="$1"; shift; local success=; local distUrl=; for distUrl in $APACHE_DIST_URLS; do if wget -O "$f" "$distUrl$distFile"; then success=1; break; fi; done; [ -n "$success" ]; }; ddist 'httpd.tar.bz2' "httpd/httpd-$HTTPD_VERSION.tar.bz2"; echo "$HTTPD_SHA256 *httpd.tar.bz2" | sha256sum -c -; ddist 'httpd.tar.bz2.asc' "httpd/httpd-$HTTPD_VERSION.tar.bz2.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys A93D62ECC3C8EA12DB220EC934EA76E6791485A8; gpg --batch --verify httpd.tar.bz2.asc httpd.tar.bz2; rm -rf "$GNUPGHOME" httpd.tar.bz2.asc; mkdir -p src; tar -xf httpd.tar.bz2 -C src --strip-components=1; rm httpd.tar.bz2; cd src; patches() { while [ "$#" -gt 0 ]; do local patchFile="$1"; shift; local patchSha256="$1"; shift; ddist "$patchFile" "httpd/patches/apply_to_$HTTPD_VERSION/$patchFile"; echo "$patchSha256 *$patchFile" | sha256sum -c -; patch -p0 < "$patchFile"; rm -f "$patchFile"; done; }; patches $HTTPD_PATCHES; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --prefix="$HTTPD_PREFIX" --enable-mods-shared=reallyall --enable-mpms-shared=all ; make -j "$(nproc)"; make install; cd ..; rm -r src man manual; sed -ri -e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' -e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' "$HTTPD_PREFIX/conf/httpd.conf"; runDeps="$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 --virtual .httpd-rundeps $runDeps; apk del .build-deps

2018-01-26 12:25:41 UTC

/bin/sh -c #(nop) COPY file:761e313354b918b6cd7ea99975a4f6b53ff5381ba689bab2984aec4dab597215 in /usr/local/bin/

2018-01-26 12:25:42 UTC

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

2018-01-26 12:25:42 UTC

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

Details
Created

2018-01-26 02:08:34 UTC

Size

27.9 MB

Content Digest
Environment
APACHE_DIST_URLS

https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

HTTPD_PATCHES

HTTPD_PREFIX

/usr/local/apache2

HTTPD_SHA256

777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

HTTPD_VERSION

2.4.29

PATH

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


Layers

[#000] sha256:1e52418956f7d2a8ea35e8e6e3318fd08e005b27457d77868c225e7433bbfa02 - 6.87% (1.92 MB)

[#001] sha256:acf472f4e5bb7956ac20bb343b304e1d3de1f79160c0d158cccbe25980022d50 - 0.0% (176 Bytes)

[#002] sha256:a15e358f7749ca8fb9627f55f5fa6c6f64a80ca7d9f9804c4acf18c704655ab5 - 0.0% (1.25 KB)

[#003] sha256:a17992a32e7dd82ba4f61ed83cbc3060a900c1995cb47149f05f636bb06d003f - 0.0% (179 Bytes)

[#004] sha256:15b8ae88b81a5827d65f9ddbe009542dade30737b0891d56473510a9fa1de35f - 93.12% (26 MB)

[#005] sha256:b70eba5669c8866a283db0b84e0a59226b2480d7fdf00b2212bec6a2952f85ec - 0.0% (294 Bytes)


History
2017-10-25 23:28:47 UTC

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

2017-10-25 23:28:48 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:28:50 UTC

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

2017-10-27 01:02:47 UTC

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

2017-10-27 01:02:49 UTC

/bin/sh -c #(nop) ENV HTTPD_PREFIX=/usr/local/apache2

2017-10-27 01:02:51 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/apache2/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2017-10-27 01:02:55 UTC

/bin/sh -c mkdir -p "$HTTPD_PREFIX" && chown www-data:www-data "$HTTPD_PREFIX"

2017-10-27 01:02:57 UTC

/bin/sh -c #(nop) WORKDIR /usr/local/apache2

2017-10-27 01:02:59 UTC

/bin/sh -c #(nop) ENV HTTPD_VERSION=2.4.29

2017-10-27 01:03:01 UTC

/bin/sh -c #(nop) ENV HTTPD_SHA256=777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

2017-10-27 01:03:03 UTC

/bin/sh -c #(nop) ENV HTTPD_PATCHES=

2017-10-27 01:03:04 UTC

/bin/sh -c #(nop) ENV APACHE_DIST_URLS=https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

2018-01-26 02:08:30 UTC

/bin/sh -c set -eux; runDeps=' apr-dev apr-util-dev apr-util-ldap perl '; apk add --no-cache --virtual .build-deps $runDeps ca-certificates coreutils dpkg-dev dpkg gcc gnupg libc-dev libressl libressl-dev libxml2-dev lua-dev make nghttp2-dev pcre-dev tar zlib-dev ; ddist() { local f="$1"; shift; local distFile="$1"; shift; local success=; local distUrl=; for distUrl in $APACHE_DIST_URLS; do if wget -O "$f" "$distUrl$distFile"; then success=1; break; fi; done; [ -n "$success" ]; }; ddist 'httpd.tar.bz2' "httpd/httpd-$HTTPD_VERSION.tar.bz2"; echo "$HTTPD_SHA256 *httpd.tar.bz2" | sha256sum -c -; ddist 'httpd.tar.bz2.asc' "httpd/httpd-$HTTPD_VERSION.tar.bz2.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys A93D62ECC3C8EA12DB220EC934EA76E6791485A8; gpg --batch --verify httpd.tar.bz2.asc httpd.tar.bz2; rm -rf "$GNUPGHOME" httpd.tar.bz2.asc; mkdir -p src; tar -xf httpd.tar.bz2 -C src --strip-components=1; rm httpd.tar.bz2; cd src; patches() { while [ "$#" -gt 0 ]; do local patchFile="$1"; shift; local patchSha256="$1"; shift; ddist "$patchFile" "httpd/patches/apply_to_$HTTPD_VERSION/$patchFile"; echo "$patchSha256 *$patchFile" | sha256sum -c -; patch -p0 < "$patchFile"; rm -f "$patchFile"; done; }; patches $HTTPD_PATCHES; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --prefix="$HTTPD_PREFIX" --enable-mods-shared=reallyall --enable-mpms-shared=all ; make -j "$(nproc)"; make install; cd ..; rm -r src man manual; sed -ri -e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' -e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' "$HTTPD_PREFIX/conf/httpd.conf"; runDeps="$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 --virtual .httpd-rundeps $runDeps; apk del .build-deps

2018-01-26 02:08:32 UTC

/bin/sh -c #(nop) COPY file:761e313354b918b6cd7ea99975a4f6b53ff5381ba689bab2984aec4dab597215 in /usr/local/bin/

2018-01-26 02:08:33 UTC

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

2018-01-26 02:08:34 UTC

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

Details
Created

2018-01-26 21:34:09 UTC

Size

30.2 MB

Content Digest
Environment
APACHE_DIST_URLS

https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

HTTPD_PATCHES

HTTPD_PREFIX

/usr/local/apache2

HTTPD_SHA256

777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

HTTPD_VERSION

2.4.29

PATH

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


Layers

[#000] sha256:d45fd9d3c4f188ab1f3a4bf6a9f5202b3f1577dbb998f5f28e82d192e0c1f0e7 - 6.52% (1.97 MB)

[#001] sha256:0e5978b6b34b3e943e0fd25dfb50991c0bad82a986cfdaa91c4de756431ba679 - 0.0% (176 Bytes)

[#002] sha256:d1ef06a991fa6ea275dcaa91bbe41f0bfeabc74e6c95f3a41f50bc87a7de95b8 - 0.0% (1.22 KB)

[#003] sha256:74094ff376b6c8a8708b989c513279aa306224ccb8fcadf71860f74eacde4169 - 0.0% (148 Bytes)

[#004] sha256:3e3dcc65580db45164e8e4e4f3aed2e54e6a2a0ce940709180176f48a89328ab - 93.47% (28.2 MB)

[#005] sha256:03f4681a413285eea14a1a99d879dc4ab94eeb9b3de7debe267244c4205dbdc1 - 0.0% (291 Bytes)


History
2017-10-25 23:28:40 UTC

/bin/sh -c #(nop) ADD file:6fbdff4b4c08600e192f5da9b67a02c58759237fb40525d70712104c80c34c48 in /

2017-10-25 23:28:40 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:28:40 UTC

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

2017-10-26 20:31:43 UTC

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

2017-10-26 20:31:43 UTC

/bin/sh -c #(nop) ENV HTTPD_PREFIX=/usr/local/apache2

2017-10-26 20:31:44 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/apache2/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2017-10-26 20:31:44 UTC

/bin/sh -c mkdir -p "$HTTPD_PREFIX" && chown www-data:www-data "$HTTPD_PREFIX"

2017-10-26 20:31:45 UTC

/bin/sh -c #(nop) WORKDIR /usr/local/apache2

2017-10-26 20:31:45 UTC

/bin/sh -c #(nop) ENV HTTPD_VERSION=2.4.29

2017-10-26 20:31:45 UTC

/bin/sh -c #(nop) ENV HTTPD_SHA256=777753a5a25568a2a27428b2214980564bc1c38c1abf9ccc7630b639991f7f00

2017-10-26 20:31:45 UTC

/bin/sh -c #(nop) ENV HTTPD_PATCHES=

2017-10-26 20:31:45 UTC

/bin/sh -c #(nop) ENV APACHE_DIST_URLS=https://www.apache.org/dyn/closer.cgi?action=download&filename= https://www-us.apache.org/dist/ https://www.apache.org/dist/ https://archive.apache.org/dist/

2018-01-26 21:34:09 UTC

/bin/sh -c set -eux; runDeps=' apr-dev apr-util-dev apr-util-ldap perl '; apk add --no-cache --virtual .build-deps $runDeps ca-certificates coreutils dpkg-dev dpkg gcc gnupg libc-dev libressl libressl-dev libxml2-dev lua-dev make nghttp2-dev pcre-dev tar zlib-dev ; ddist() { local f="$1"; shift; local distFile="$1"; shift; local success=; local distUrl=; for distUrl in $APACHE_DIST_URLS; do if wget -O "$f" "$distUrl$distFile"; then success=1; break; fi; done; [ -n "$success" ]; }; ddist 'httpd.tar.bz2' "httpd/httpd-$HTTPD_VERSION.tar.bz2"; echo "$HTTPD_SHA256 *httpd.tar.bz2" | sha256sum -c -; ddist 'httpd.tar.bz2.asc' "httpd/httpd-$HTTPD_VERSION.tar.bz2.asc"; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys A93D62ECC3C8EA12DB220EC934EA76E6791485A8; gpg --batch --verify httpd.tar.bz2.asc httpd.tar.bz2; rm -rf "$GNUPGHOME" httpd.tar.bz2.asc; mkdir -p src; tar -xf httpd.tar.bz2 -C src --strip-components=1; rm httpd.tar.bz2; cd src; patches() { while [ "$#" -gt 0 ]; do local patchFile="$1"; shift; local patchSha256="$1"; shift; ddist "$patchFile" "httpd/patches/apply_to_$HTTPD_VERSION/$patchFile"; echo "$patchSha256 *$patchFile" | sha256sum -c -; patch -p0 < "$patchFile"; rm -f "$patchFile"; done; }; patches $HTTPD_PATCHES; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --prefix="$HTTPD_PREFIX" --enable-mods-shared=reallyall --enable-mpms-shared=all ; make -j "$(nproc)"; make install; cd ..; rm -r src man manual; sed -ri -e 's!^(\s*CustomLog)\s+\S+!\1 /proc/self/fd/1!g' -e 's!^(\s*ErrorLog)\s+\S+!\1 /proc/self/fd/2!g' "$HTTPD_PREFIX/conf/httpd.conf"; runDeps="$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 --virtual .httpd-rundeps $runDeps; apk del .build-deps

2018-01-26 21:34:09 UTC

/bin/sh -c #(nop) COPY file:761e313354b918b6cd7ea99975a4f6b53ff5381ba689bab2984aec4dab597215 in /usr/local/bin/

2018-01-26 21:34:09 UTC

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

2018-01-26 21:34:09 UTC

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

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