2022-06-22 01:41:22 UTC
86.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA2565dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
PG_VERSION15beta1
[#000] sha256:bb638a3869eed698f88775c7a48f36f8e22e7c6bbaa98fa1d5678966b619b859 - 3.08% (2.67 MB)
[#001] sha256:fa6b536300ebf44ca3d811d15e76a960dacddafea21867a310b2bc9d308d382e - 0.0% (1.23 KB)
[#002] sha256:c973fe6785aafb3f812e17ca4088d67ed9081ac155d8340dfbfb27e6af6fd4f1 - 0.0% (115 Bytes)
[#003] sha256:413641c37db72ebdeb88bef9ba107534df555bbd49055e545751dbb24beb64fa - 96.9% (84 MB)
[#004] sha256:5807eea6247a4c73a624082cd3366d96c953de7e4437865109ff00c328de6af2 - 0.01% (9.23 KB)
[#005] sha256:6414a655a4f6608f6bf9aa0ec65e21753183bdcd2c68f09c7ed84fa3e6e8be70 - 0.0% (129 Bytes)
[#006] sha256:774e0036c4d926350d50bf0ae6659b5a0bb8267453fb087f3fe7eed86526cc8a - 0.0% (173 Bytes)
[#007] sha256:80e5a8000042b4efe3e26035f4a84ba6db2bb1b7fc6670250bdd1ada599c44a8 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:1750ccfabfe93636015070d51a6e824cbd738056223421c69d8aaabc38041b18 in /
2022-05-23 19:38:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-05-25 22:22:31 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
2022-05-25 22:22:32 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-05-25 22:22:33 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-05-25 22:22:34 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-05-25 22:22:35 UTC/bin/sh -c #(nop) ENV PG_VERSION=15beta1
2022-05-25 22:22:36 UTC/bin/sh -c #(nop) ENV PG_SHA256=5dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
2022-06-06 20:54:01 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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-06-06 20:54: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
2022-06-06 20:54:03 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-06-06 20:54:04 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-06-06 20:54:05 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-06-06 20:54:06 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-06-22 01:41:19 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-06-22 01:41:19 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-06-22 01:41:20 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-06-22 01:41:21 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-06-22 01:41:22 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-06-22 01:39:07 UTC
81.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA2565dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
PG_VERSION15beta1
[#000] sha256:2408cc74d12b6cd092bb8b516ba7d5e290f485d3eb9672efc00f0583730179e8 - 3.27% (2.67 MB)
[#001] sha256:cde4337df78db353166be0e52015f790ef243152b9e250db922937c6c4435943 - 0.0% (1.26 KB)
[#002] sha256:55ba5f4947805e5929e7a1bc92a0d59a6aac5ef362202d33f26391fa79e09df9 - 0.0% (149 Bytes)
[#003] sha256:b35c39a31c65c4fe34fb141692c0a81d573352d94b85dcb0d6271bcfceaaad14 - 96.71% (78.9 MB)
[#004] sha256:af6462b38c6f1e88079528386d2d1b04acfa3b18afd37680334d6743565f2ffb - 0.01% (9.23 KB)
[#005] sha256:f25976a4676c12ad78cd2a6328b4a02f7734b21f13ce9f275aa646a417ed2d7c - 0.0% (160 Bytes)
[#006] sha256:d46276522ea76aff90b1882f0606e1962b0acc14f3f11aafadaaef30695f3cb5 - 0.0% (194 Bytes)
[#007] sha256:530406b78f1bf0c9c3d150091d704ea9795bc3630842588a583d41ce2de2e9fb - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:8e81116368669ed3dd361bc898d61bff249f524139a239fdaf3ec46869a39921 in /
2022-05-23 19:19:31 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-05-25 20:33:22 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
2022-05-25 20:33:22 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-05-25 20:33:23 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-05-25 20:33:23 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-05-25 20:33:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=15beta1
2022-05-25 20:33:23 UTC/bin/sh -c #(nop) ENV PG_SHA256=5dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
2022-06-06 22:01:12 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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-06-06 22:01:13 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
2022-06-06 22:01:13 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-06-06 22:01:13 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-06-06 22:01:14 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-06-06 22:01:14 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-06-22 01:39:07 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-06-22 01:39:07 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-06-22 01:39:07 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-06-22 01:39:07 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-06-22 01:39:07 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-06-21 23:53:53 UTC
79.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA2565dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
PG_VERSION15beta1
[#000] sha256:79a25ccaf940855872635c06e7614d9b27dd38ffb5a8adfdb9274dfdc0ea0d87 - 3.12% (2.49 MB)
[#001] sha256:68ce185d2eacd6b0f61082b66474ba45a2f13ff27bbae2c58ee0b2da085db2db - 0.0% (1.25 KB)
[#002] sha256:8c88d0d1f7487195d34ca2fb5493567418f60bf6dc33e0a43e6c3338928710e5 - 0.0% (149 Bytes)
[#003] sha256:a10d907cac460b01cb71a667b9697f3be65c46ab5c8adfd71713639f4e5a5131 - 96.86% (77.3 MB)
[#004] sha256:415e262dd6ccc0a9cf41baad75b5d5745a7102a71777cd1d036862331a8c353d - 0.01% (9.24 KB)
[#005] sha256:6db76d8942c7fa6973f72e4f84573164e6b1a5186f46f4f512c7c8f3c8709d1d - 0.0% (161 Bytes)
[#006] sha256:95a90149521a5c40aac8a1dbef1291aaf48ba9135bba65c70ddc9291ac4df8a5 - 0.0% (195 Bytes)
[#007] sha256:0b04aa533ad1d0a421b2cbfeb74d10b8021e48473471baff29eac057b79405a0 - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:f7cee617575b5e5a7672d298a519bb8d8b5098efb90aa2a5d7b0510003457d52 in /
2022-05-23 19:49:33 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-05-25 22:54:04 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
2022-05-25 22:54:04 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-05-25 22:54:06 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-05-25 22:54:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-05-25 22:54:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=15beta1
2022-05-25 22:54:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=5dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
2022-06-06 21:34:21 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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-06-06 21:34:23 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
2022-06-06 21:34:25 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-06-06 21:34:26 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-06-06 21:34:27 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-06-06 21:34:28 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-06-21 23:53:52 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-06-21 23:53:52 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-06-21 23:53:53 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-06-21 23:53:53 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-06-21 23:53:53 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-06-21 23:58:34 UTC
75.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA2565dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
PG_VERSION15beta1
[#000] sha256:6366ba92f08e2418e90171f1e34bd86ecd50fdc95953b3f33b8943c143518eca - 3.06% (2.3 MB)
[#001] sha256:1485f2527978c240fce79b602a9c26b17948e5d60d3d518958be1069f0b225e6 - 0.0% (1.26 KB)
[#002] sha256:2ea3978d0b81cea51a1d3359988fc1b1b202c9020e43fd938e6bbc7611ac1bb5 - 0.0% (149 Bytes)
[#003] sha256:ee819cb6a7d6b28ffc70c38845ba1b2bcd5f41a606a2f173ee50f3de560a9f28 - 96.92% (72.8 MB)
[#004] sha256:a53cdcdbbb9a0761411e626978b5c477ce571bec622e603a6bcc539cbd2dd5d1 - 0.01% (9.24 KB)
[#005] sha256:1334cbfae76a4ec8c34d9e49134aa00dd31d7b5b5902323487817662fca84054 - 0.0% (163 Bytes)
[#006] sha256:3d6a2fcd55818859fc1149cf69630b3f152739291556b615ddcdf5bf49a54ff0 - 0.0% (193 Bytes)
[#007] sha256:abf537d376ca8f586b49577d5a507e9fcf861b5cf02567bf3d11b541029d8808 - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:72698cc08524b911ebaacf992490707e5a951ddd2fe6edb3fb598e9dc7155049 in /
2022-05-23 18:57:47 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-05-25 20:19:26 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
2022-05-25 20:19:27 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-05-25 20:19:29 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-05-25 20:19:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-05-25 20:19:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=15beta1
2022-05-25 20:19:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=5dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
2022-06-07 05:10:51 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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-06-07 05:10:53 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
2022-06-07 05:10:54 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-06-07 05:10:55 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-06-07 05:10:56 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-06-07 05:10:57 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-06-21 23:58:33 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-06-21 23:58:33 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-06-21 23:58:34 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-06-21 23:58:34 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-06-21 23:58:34 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-06-22 02:41:38 UTC
80.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA2565dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
PG_VERSION15beta1
[#000] sha256:b3c136eddcbf2003d3180787cef00f39d46b9fd9e4623178282ad6a8d63ad3b0 - 3.19% (2.57 MB)
[#001] sha256:428d3642719badb326ee04030ea97839d69d5a82b8306924e5ebcf3a65b191dc - 0.0% (1.23 KB)
[#002] sha256:9bd66d73c4e4594a6a582481c08b74269a6bda983845fb5018e8ff8e00fb5ec1 - 0.0% (115 Bytes)
[#003] sha256:57a94877e943f79b1a81bd6a1b04abfd3ecf326803fda193d5857b25a8d1d6a8 - 96.79% (77.9 MB)
[#004] sha256:97189f6b2130cbaa97c745b0ab038e3be9bce269e3030f93ad32ab9c2fa34f7a - 0.01% (9.23 KB)
[#005] sha256:eef337ddd221bc83d502866453c08a37edec0273de0d4f456f9806f759678a88 - 0.0% (129 Bytes)
[#006] sha256:f20f15302a3451c51cc63c7ec557a70ffa92601125689a20cd3b0d0d57031545 - 0.0% (173 Bytes)
[#007] sha256:72faece17c64c70fdada62ef8e8c5fadbe4b7d6ddd5b0913ac976bf935c2f7e9 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:3ae36c6c4a1fc43157692da97c6c4fa6c3d0189ba82e2bef7f5aaf4a5e083f18 in /
2022-05-23 19:39:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-05-25 21:33:04 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
2022-05-25 21:33:05 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-05-25 21:33:06 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-05-25 21:33:07 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-05-25 21:33:08 UTC/bin/sh -c #(nop) ENV PG_VERSION=15beta1
2022-05-25 21:33:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=5dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
2022-06-07 01:02:06 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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-06-07 01:02:07 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
2022-06-07 01:02:07 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-06-07 01:02:08 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-06-07 01:02:09 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-06-07 01:02:10 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-06-22 02:41:35 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-06-22 02:41:35 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-06-22 02:41:36 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-06-22 02:41:37 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-06-22 02:41:38 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-06-22 03:27:22 UTC
87.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA2565dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
PG_VERSION15beta1
[#000] sha256:d3deabf2a506ef6f5fa7c2a68bf27047574cef9908b30a97ff2d01ae539b089a - 3.04% (2.66 MB)
[#001] sha256:81e62f323795c1329627761f005a9830616ff5334a265f968c101d69c1c0269a - 0.0% (1.26 KB)
[#002] sha256:071dfcedb35d03138067dfd4563efbfe985d93db17eea877655db88cd18ea7d9 - 0.0% (149 Bytes)
[#003] sha256:e3c7c400bf7e12a68882d6a8f43b7917efe8a6fb8fd2b50796513ce0745bd7d7 - 96.94% (84.9 MB)
[#004] sha256:d9056b9afcd716b0b8b7a27791941cd93dd7937ed42bda99f3498ba9bd546c6a - 0.01% (9.24 KB)
[#005] sha256:58285910909d40568eb17af2a6279a17c7050282a95729dba2d4f298f9dc8db0 - 0.0% (163 Bytes)
[#006] sha256:14306543153fc4e8f2132e950b7419f1811a2e01a2374bf0070051b8ca9d5899 - 0.0% (194 Bytes)
[#007] sha256:7b2de5ae1ae75c38ee72dbfd9b22f62e044a2ad3efcade5d1fb6c0a6dd3e2c4f - 0.01% (4.6 KB)
/bin/sh -c #(nop) ADD file:6a5450c8a7cee3ceda59e7cb350c54df4139b0f7b7cf49c8b31bb9c01646c3cd in /
2022-05-23 19:16:53 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-05-25 21:15:49 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
2022-05-25 21:15:52 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-05-25 21:16:03 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-05-25 21:16:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-05-25 21:16:08 UTC/bin/sh -c #(nop) ENV PG_VERSION=15beta1
2022-05-25 21:16:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=5dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
2022-06-07 05:06:54 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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-06-07 05:07:05 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
2022-06-07 05:07:11 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-06-07 05:07:13 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-06-07 05:07:19 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-06-07 05:07:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-06-22 03:27:04 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-06-22 03:27:09 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-06-22 03:27:13 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-06-22 03:27:20 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-06-22 03:27:22 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-06-22 01:46:58 UTC
82.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR15
PG_SHA2565dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
PG_VERSION15beta1
[#000] sha256:af1ac1a73384e058591d04d19bc05a06781cc32d52d4593b468d6cb95eda9858 - 2.97% (2.46 MB)
[#001] sha256:e39251492e62d811aa94961c8e28a32e2d839aff833e8cb7d038d68cfa1b31b1 - 0.0% (1.25 KB)
[#002] sha256:c159c69cfc44c287422fdef78cc8dbc8c6a88fd4f24d04b8efc313da9b72eda0 - 0.0% (147 Bytes)
[#003] sha256:90be3c2b2f667ffe1673e22d7d7a7a008855f32251a05aab3919eca3e15b2049 - 97.01% (80.2 MB)
[#004] sha256:de4a3c44a7d57dccc3cca409ceae8c112086db15e6be1f465bc57e2b16d80235 - 0.01% (9.23 KB)
[#005] sha256:9968f722869f88da9df4474d6ef852169beb91dff65a083d44ffc12c8922105d - 0.0% (161 Bytes)
[#006] sha256:25404d00b4a8dd4a876bec72dc155d50d87c09e1a414342efcbc319da7d2a03c - 0.0% (193 Bytes)
[#007] sha256:c0c69929705097924c14d5c81d70402de49e210e423da621ebd833143f6ce458 - 0.01% (4.59 KB)
/bin/sh -c #(nop) ADD file:e1852d8ef555a0d3ef6d0b74a898720c82bb9f491430b06a0dd0499497ce118e in /
2022-05-23 19:42:10 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2022-05-25 21:18:55 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
2022-05-25 21:18:56 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2022-05-25 21:18:57 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2022-05-25 21:18:57 UTC/bin/sh -c #(nop) ENV PG_MAJOR=15
2022-05-25 21:18:57 UTC/bin/sh -c #(nop) ENV PG_VERSION=15beta1
2022-05-25 21:18:58 UTC/bin/sh -c #(nop) ENV PG_SHA256=5dd8a466fb0c9eca11f10b1275524fc8f38d1699cac6a689780b49eac878f7af
2022-06-07 03:39:28 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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-dev lz4-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version
2022-06-07 03:39:35 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
2022-06-07 03:39:36 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2022-06-07 03:39:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2022-06-07 03:39:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2022-06-07 03:39:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-06-22 01:46:57 UTC/bin/sh -c #(nop) COPY file:232dce6cf487afb0c0cc43d38932ff29614a74b57cd04557dc7398e6d2b93b8f in /usr/local/bin/
2022-06-22 01:46:57 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-06-22 01:46:58 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-06-22 01:46:58 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-06-22 01:46:58 UTC/bin/sh -c #(nop) CMD ["postgres"]