2023-08-08 21:25:20 UTC
91 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
PG_VERSION12.15
[#000] sha256:95dc695758361a4038a2d9026959d72e1f531114edb0341be7ce47d912ef069e - 3.39% (3.09 MB)
[#001] sha256:5ffc9b02160bb312a7ec87e959a3a9f5cc15bd3ee2c9686dc4b0723e53b4df62 - 0.0% (1.26 KB)
[#002] sha256:e0c784e4e00ce4d87e5b67f8577ead880344f425d991d943e54f61738ab5535b - 0.0% (149 Bytes)
[#003] sha256:96b34faa601952daa3c9db4a3a44f5880e4a8ea5da095e149948f3fe94e8e76a - 96.59% (87.9 MB)
[#004] sha256:f4fdd38db1ca09a3a7ad942e54328bc8f19534a92482203732153a794ed9e0ac - 0.01% (8.49 KB)
[#005] sha256:eb7282fe15c4721d405478f1cab062cd3f7fa6e2797a8206f2b224509a5b4045 - 0.0% (161 Bytes)
[#006] sha256:831d1c430f0900633c3b42ae35f22d7e62cda9c34a844cc691aaff4e115ed9d5 - 0.0% (202 Bytes)
[#007] sha256:2226d4b61c4fc99cd81091d540292dc590162425b6fd629e5b1d506d0189ceee - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:4b33c52e11b19fde30197c62ead0b77bde28d34edaa08346a5302cd892d3cebe in /
2023-08-07 19:38:27 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-08 20:38:44 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2023-08-08 20:38:44 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-08 20:38:45 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-08 21:20:47 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2023-08-08 21:20:47 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.15
2023-08-08 21:20:47 UTC/bin/sh -c #(nop) ENV PG_SHA256=bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
2023-08-08 21:20:47 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-08 21:25:17 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-08-08 21:25:19 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-08 21:25:19 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-08 21:25:19 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-08 21:25:20 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-08 21:25:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-08 21:25:20 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-08 21:25:20 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-08 21:25:20 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-08 21:25:20 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-08 21:25:20 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-08-09 02:52:29 UTC
86.3 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
PG_VERSION12.15
[#000] sha256:7264a8db6415046d36d16ba98b79778e18accee6ffa71850405994cffa9be7de - 3.76% (3.24 MB)
[#001] sha256:6ff36a0c8b9b9d276476d169ec8b67363b3ce61e2bb9dd531afa7a5e7bc2384c - 0.0% (1.26 KB)
[#002] sha256:41485c1d4f30a3b23132045299ad7d532a237a5e1d5475cb73e434a1fa2d8f4d - 0.0% (149 Bytes)
[#003] sha256:4ecd67afbac954870e02871316a0218f8fe0b122d1d1e72cca63def7f0d96ca0 - 96.23% (83.1 MB)
[#004] sha256:f197a480dd133c215133a3ca6aa8b9b717d0d1a3743e9d49055d35ab74a7892d - 0.01% (8.49 KB)
[#005] sha256:69548af5f6df787e309761d10e6c317d21f35b283bb1f60460db90485b0f1f58 - 0.0% (160 Bytes)
[#006] sha256:c70094c834792af293828f0ebe5eadde46040f0d5d1aca1ecc2cc4b99be2fbf2 - 0.0% (197 Bytes)
[#007] sha256:a3cf6fb619ed7af9422be514e6ef66b875bfb543b7777d87a297b56558623997 - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:32ff5e7a78b890996ee4681cc0a26185d3e9acdb4eb1e2aaccb2411f922fed6b in /
2023-08-07 19:20:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-09 02:26:58 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2023-08-09 02:26:58 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-09 02:26:58 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-09 02:49:57 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2023-08-09 02:49:57 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.15
2023-08-09 02:49:57 UTC/bin/sh -c #(nop) ENV PG_SHA256=bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
2023-08-09 02:49:57 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-09 02:52:27 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-08-09 02:52:28 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-09 02:52:28 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-09 02:52:28 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-09 02:52:29 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-09 02:52:29 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-09 02:52:29 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-09 02:52:29 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-09 02:52:29 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-09 02:52:29 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-09 02:52:29 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-08-08 22:53:03 UTC
85.2 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
PG_VERSION12.15
[#000] sha256:af09961d4a43b504efc76e38b50918977c28be73eeb8b926247783a00e8b9f2f - 3.52% (3 MB)
[#001] sha256:13b73a3c9920448aa9f1c953bcee2cf61da8e037ec17962798e2b2578a774d2f - 0.0% (1.25 KB)
[#002] sha256:69dd824c881352b4f681664d1a1038cb7cacc538bcd635a4f61fb6ed0388db1e - 0.0% (149 Bytes)
[#003] sha256:b6604db954ab0883968fe43b4fdf6c4e1d5061284d6e2985c1dd60d3b89d1f08 - 96.46% (82.2 MB)
[#004] sha256:b817bbf0bc80308fa6ece2965156f193f85c388dc9d0171dee014e564a17a50f - 0.01% (8.49 KB)
[#005] sha256:5d106b173be2482e2cd0ef910f012093b7b378b381447dfd6799bf2189f49a86 - 0.0% (161 Bytes)
[#006] sha256:e4b264e58c25b327950d24249eff9cbf6649d0cf8d1e4ce2313674be04610d41 - 0.0% (199 Bytes)
[#007] sha256:10ffef71e6bd315b0ef0b2a3f873dddda2e99bd30301a2ce2bdb1877fe01a070 - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:9882e99e5f94ab2db05c029648ac5be7cf0f063a8701394fcbb543a7ef5d4b90 in /
2023-08-07 19:49:15 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-08 22:22:43 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2023-08-08 22:22:43 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-08 22:22:44 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-08 22:50:03 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2023-08-08 22:50:03 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.15
2023-08-08 22:50:03 UTC/bin/sh -c #(nop) ENV PG_SHA256=bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
2023-08-08 22:50:03 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-08 22:53:00 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-08-08 22:53:02 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-08 22:53:02 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-08 22:53:02 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-08 22:53:03 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-08 22:53:03 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-08 22:53:03 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-08 22:53:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-08 22:53:03 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-08 22:53:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-08 22:53:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-08-08 02:53:47 UTC
80.2 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
PG_VERSION12.15
[#000] sha256:f8dec92eec42224ef9e6ca9c6207ea6b9195dcf93d06bd5ceff0f814b62bf064 - 3.45% (2.77 MB)
[#001] sha256:5bf5c2c99c4018a6602af0b3f90590873658820fedbb99ccefdcc9843a41607a - 0.0% (1.26 KB)
[#002] sha256:06bb3f13868e7bfeadf5ab1f5864ff0fc2b75674a04e07e30b6c68bf462762aa - 0.0% (149 Bytes)
[#003] sha256:d505f0af32f1eb34f97463d479a4db39653e0d5b4d3bc6de2d886ecbce851292 - 96.53% (77.4 MB)
[#004] sha256:f03124e90b9418181421b47b4c037be5e4a43aef71963174b254bfcddbc677f8 - 0.01% (8.49 KB)
[#005] sha256:68098e50bda3547c9b817aecc4961661921962d5ca049f86c8f5000d5b191819 - 0.0% (161 Bytes)
[#006] sha256:1aad4285ea70fece1c22b747848d3855b60131ffd4e9559c1651be077d3cb8d4 - 0.0% (200 Bytes)
[#007] sha256:c47583ce35a6e6d1cc1b81104c8cec0d523472aaeef0b4dac6f07ce924426bc3 - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:e3f56488d3d3bb67729714db13ddadf6652e7efb5281cfc7010d3e71f9d6607f in /
2023-08-07 19:57:25 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-08 02:31:57 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2023-08-08 02:31:57 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-08 02:31:58 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-08 02:51:42 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2023-08-08 02:51:42 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.15
2023-08-08 02:51:42 UTC/bin/sh -c #(nop) ENV PG_SHA256=bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
2023-08-08 02:51:42 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-08 02:53:44 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-08-08 02:53:45 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-08 02:53:46 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-08 02:53:46 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-08 02:53:46 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-08 02:53:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-08 02:53:46 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-08 02:53:46 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-08 02:53:46 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-08 02:53:47 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-08 02:53:47 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-08-09 03:27:35 UTC
85.4 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
PG_VERSION12.15
[#000] sha256:9fda8d8052c61740409c4bea888859c141fd8cc3f58ac61943144ff6d1681b2d - 3.72% (3.18 MB)
[#001] sha256:b0d9bb38da5c5028501beae80106d05b613152a17992c22e8f932955cd56d591 - 0.0% (1.25 KB)
[#002] sha256:a99f2e61e52526c29737f6852964ac1f22db3b43a8a1781aa9014fbcdee63e20 - 0.0% (147 Bytes)
[#003] sha256:d9e7cfe162e5285c1605617d24b6db75eecc2830c001659fcde9fa7e069ac251 - 96.26% (82.2 MB)
[#004] sha256:fd2d91d825028e0e64f21d7a1d4d50828b36f38479af9b69cf96eed16f4b03b4 - 0.01% (8.49 KB)
[#005] sha256:df4e2933c512e9a28b368d1d5a4ffa8235b1f58eb98710c2127bfb27ea7e18b9 - 0.0% (161 Bytes)
[#006] sha256:09a11a91af18cb412292c6803aa33c2f77d425bd588fb9f798a1154947fbd9e8 - 0.0% (197 Bytes)
[#007] sha256:50f49a9ff4215fa6fdecaa85e92cd592f7371f38dfffcfea04828e5a0fd5724f - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:b2e7eaa7e41f08853dbe08d84439a7f9fd32fc58c3aa1e298f3f60343b2b683a in /
2023-08-07 19:39:19 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-09 03:08:16 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2023-08-09 03:08:16 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-09 03:08:16 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-09 03:25:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2023-08-09 03:25:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.15
2023-08-09 03:25:46 UTC/bin/sh -c #(nop) ENV PG_SHA256=bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
2023-08-09 03:25:46 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-09 03:27:32 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-08-09 03:27:34 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-09 03:27:34 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-09 03:27:34 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-09 03:27:35 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-09 03:27:35 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-09 03:27:35 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-09 03:27:35 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-09 03:27:35 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-09 03:27:35 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-09 03:27:35 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-08-08 22:43:52 UTC
91.6 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
PG_VERSION12.15
[#000] sha256:55353ca330e9474ce7b858eca6842bb540ef4a70b2981c2ed47eefb9ef4253ad - 3.48% (3.19 MB)
[#001] sha256:39d85e956d8abee510b053a42fd1ed47c684f6838ffba3cccca8a7eb65f59bcc - 0.0% (1.26 KB)
[#002] sha256:22205f49560580d8e9777856387c309094391a1a0346669b180abc602b5016dc - 0.0% (149 Bytes)
[#003] sha256:6000fa1e8778da6d6de8ecc0a1040c32992d2657672bb9ff8eeb9109897dd383 - 96.5% (88.4 MB)
[#004] sha256:9e4b41012061d01434ca66ef246284397496ed8d20c053c58a9a7b79a256a154 - 0.01% (8.49 KB)
[#005] sha256:646333b7921ece5ec6580b42a29b3316cea82e710e04bdf4fc254f42e7532e97 - 0.0% (161 Bytes)
[#006] sha256:84dd63b6335278d57e8e3568ddbd1742cf9e39d183641f729db7022f304fa53c - 0.0% (199 Bytes)
[#007] sha256:ae95eeb0dc83e1bc633606bddbf5200136c77817bd7aa12d9c7930c62587e90a - 0.0% (4.67 KB)
/bin/sh -c #(nop) ADD file:b8cf7516cdf9487d9347da0b5b5e3a6f65f24ebcdcadf81f430adb2b2664f2d1 in /
2023-08-07 20:16:26 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-08 22:06:51 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2023-08-08 22:06:52 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-08 22:06:53 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-08 22:40:25 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2023-08-08 22:40:26 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.15
2023-08-08 22:40:26 UTC/bin/sh -c #(nop) ENV PG_SHA256=bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
2023-08-08 22:40:27 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-08 22:43:42 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-08-08 22:43:46 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-08 22:43:48 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-08 22:43:48 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-08 22:43:49 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-08 22:43:50 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-08 22:43:50 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-08 22:43:50 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-08 22:43:51 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-08 22:43:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-08 22:43:52 UTC/bin/sh -c #(nop) CMD ["postgres"]
2023-08-09 03:32:32 UTC
87.8 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA256bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
PG_VERSION12.15
[#000] sha256:8bed2eae372fe236061920d89ae1ce89695a12df84989113bcc7ce4bd9774456 - 3.49% (3.07 MB)
[#001] sha256:6a4d2cfb9ac42efa056222925b35c1838180524b337cfdc899140faa5010ed05 - 0.0% (1.25 KB)
[#002] sha256:7a11c771b686c41babd935d8f08488ecde30daecfb9dc4436e1ffbf71dd78c88 - 0.0% (149 Bytes)
[#003] sha256:d9f36f34ea4035c1054069a8187bb0175f5fbccd80e3f39788ce8eabb51079e6 - 96.49% (84.7 MB)
[#004] sha256:a1892df77e31dc87e26e7c1f94383d77827a305999312f6c7a897a5fc29ca62c - 0.01% (8.49 KB)
[#005] sha256:d84a12c8824188cc9b1f025840f96460439ef289f6905d7f419c992456787115 - 0.0% (160 Bytes)
[#006] sha256:1826546d6005b82020380e1eae4a252be529526c4c10a74780a4f71926a9fcb8 - 0.0% (199 Bytes)
[#007] sha256:39dee635a99b120384c6327587508c3f726406718d2b62348ddf3e5aceae9907 - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:b57ea5bba3c986df3471f3ea27443a9a4b19d40c46f9fbca8bb6077b399725aa in /
2023-08-07 19:41:55 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-09 03:06:01 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2023-08-09 03:06:02 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-09 03:06:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-09 03:30:07 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2023-08-09 03:30:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.15
2023-08-09 03:30:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=bb5206e2864c1c4579938b96ea6096d155f22abf2d2cc2aa57571e3c4cb12b36
2023-08-09 03:30:07 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-09 03:32:24 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; 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 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2023-08-09 03:32:30 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-09 03:32:31 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-09 03:32:31 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-09 03:32:31 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-09 03:32:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-09 03:32:32 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-09 03:32:32 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-09 03:32:32 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-09 03:32:32 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-09 03:32:32 UTC/bin/sh -c #(nop) CMD ["postgres"]