| # debian.sh --arch 'amd64' out/ 'trixie' '@1760918400' | 
						
					
						
							| RUN /bin/sh -c set -eux; 	groupadd -r postgres --gid=999; 	useradd -r -g postgres --uid=999 --home-dir=/var/lib/postgresql --shell=/bin/bash postgres; 	install --verbose --directory --owner postgres --group postgres --mode 1777 /var/lib/postgresql # buildkit | 
						
					
						
							| RUN /bin/sh -c set -ex; 	apt-get update; 	apt-get install -y --no-install-recommends 		gnupg 		less 	; 	rm -rf /var/lib/apt/lists/* # buildkit | 
						
					
						
							| ENV GOSU_VERSION=1.19 | 
						
					
						
							| RUN /bin/sh -c set -eux; 	savedAptMark="$(apt-mark showmanual)"; 	apt-get update; 	apt-get install -y --no-install-recommends ca-certificates wget; 	rm -rf /var/lib/apt/lists/*; 	dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')"; 	wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch"; 	wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc"; 	export GNUPGHOME="$(mktemp -d)"; 	gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4; 	gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu; 	gpgconf --kill all; 	rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; 	apt-mark auto '.*' > /dev/null; 	[ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; 	apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	chmod +x /usr/local/bin/gosu; 	gosu --version; 	gosu nobody true # buildkit | 
						
					
						
							| RUN /bin/sh -c set -eux; 	if [ -f /etc/dpkg/dpkg.cfg.d/docker ]; then 		grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; 		sed -ri '/\/usr\/share\/locale/d' /etc/dpkg/dpkg.cfg.d/docker; 		! grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; 	fi; 	apt-get update; apt-get install -y --no-install-recommends locales; rm -rf /var/lib/apt/lists/*; 	echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen; 	locale-gen; 	locale -a | grep 'en_US.utf8' # buildkit | 
						
					
						
							| ENV LANG=en_US.utf8 | 
						
					
						
							| RUN /bin/sh -c set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		libnss-wrapper 		xz-utils 		zstd 	; 	rm -rf /var/lib/apt/lists/* # buildkit | 
						
					
						
							| RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit | 
						
					
						
							| RUN /bin/sh -c set -ex; 	key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; 	export GNUPGHOME="$(mktemp -d)"; 	mkdir -p /usr/local/share/keyrings/; 	gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; 	gpg --batch --export --armor "$key" > /usr/local/share/keyrings/postgres.gpg.asc; 	gpgconf --kill all; 	rm -rf "$GNUPGHOME" # buildkit | 
						
					
						
							| ENV PG_MAJOR=18 | 
						
					
						
							| ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/18/bin | 
						
					
						
							| ENV PG_VERSION=18.0-1.pgdg13+3 | 
						
					
						
							| RUN /bin/sh -c set -ex; 		export PYTHONDONTWRITEBYTECODE=1; 		dpkgArch="$(dpkg --print-architecture)"; 	aptRepo="[ signed-by=/usr/local/share/keyrings/postgres.gpg.asc ] http://apt.postgresql.org/pub/repos/apt trixie-pgdg main $PG_MAJOR"; 	case "$dpkgArch" in 		amd64 | arm64 | ppc64el) 			echo "deb $aptRepo" > /etc/apt/sources.list.d/pgdg.list; 			apt-get update; 			;; 		*) 			echo "deb-src $aptRepo" > /etc/apt/sources.list.d/pgdg.list; 						savedAptMark="$(apt-mark showmanual)"; 						tempDir="$(mktemp -d)"; 			cd "$tempDir"; 						apt-get update; 			apt-get install -y --no-install-recommends dpkg-dev; 			echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list; 			_update_repo() { 				dpkg-scanpackages . > Packages; 				apt-get -o Acquire::GzipIndexes=false update; 			}; 			_update_repo; 						nproc="$(nproc)"; 			export DEB_BUILD_OPTIONS="nocheck parallel=$nproc"; 			apt-get build-dep -y postgresql-common-dev; 			apt-get source --compile postgresql-common-dev; 			_update_repo; 			apt-get build-dep -y "postgresql-$PG_MAJOR=$PG_VERSION"; 			apt-get source --compile "postgresql-$PG_MAJOR=$PG_VERSION"; 									apt-mark showmanual | xargs apt-mark auto > /dev/null; 			apt-mark manual $savedAptMark; 						ls -lAFh; 			_update_repo; 			grep '^Package: ' Packages; 			cd /; 			;; 	esac; 		apt-get install -y --no-install-recommends postgresql-common; 	sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; 	apt-get install -y --no-install-recommends 		"postgresql-$PG_MAJOR=$PG_VERSION" 	; 	if apt-get install -s "postgresql-$PG_MAJOR-jit" > /dev/null 2>&1; then 		apt-get install -y --no-install-recommends "postgresql-$PG_MAJOR-jit=$PG_VERSION"; 	fi; 		rm -rf /var/lib/apt/lists/*; 		if [ -n "$tempDir" ]; then 		apt-get purge -y --auto-remove; 		rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; 	fi; 		find /usr -name '*.pyc' -type f -exec bash -c 'for pyc; do dpkg -S "$pyc" &> /dev/null || rm -vf "$pyc"; done' -- '{}' +; 		postgres --version # buildkit | 
						
					
						
							| RUN /bin/sh -c set -eux; 	dpkg-divert --add --rename --divert "/usr/share/postgresql/postgresql.conf.sample.dpkg" "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample"; 	cp -v /usr/share/postgresql/postgresql.conf.sample.dpkg /usr/share/postgresql/postgresql.conf.sample; 	ln -sv ../postgresql.conf.sample "/usr/share/postgresql/$PG_MAJOR/"; 	sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/share/postgresql/postgresql.conf.sample; 	grep -F "listen_addresses = '*'" /usr/share/postgresql/postgresql.conf.sample # buildkit | 
						
					
						
							| RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit | 
						
					
						
							| ENV PGDATA=/var/lib/postgresql/18/docker | 
						
					
						
							| VOLUME [/var/lib/postgresql] | 
						
					
						
							| COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit | 
						
					
						
							| RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit | 
						
					
						
							| ENTRYPOINT ["docker-entrypoint.sh"] | 
						
					
						
							| STOPSIGNAL SIGINT | 
						
					
						
							| EXPOSE map[5432/tcp:{}] | 
						
					
						
							| CMD ["postgres"] | 
						
					
						
							| WORKDIR /tmp | 
						
					
						
							| WORKDIR /tmp | 
						
					
						
							| ARG PG_MAJOR=18 | 
						
					
						
							| ARG POSTGIS_MAJOR=3 | 
						
					
						
							| ARG VCHORD_VERSION=0.5.3 | 
						
					
						
							| RUN |3 PG_MAJOR=18 POSTGIS_MAJOR=3 VCHORD_VERSION=0.5.3 /bin/sh -c apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR   && apt update   && apt install -y --no-install-recommends   libldap-common   postgresql-${PG_MAJOR}-postgis-${POSTGIS_MAJOR}   postgresql-${PG_MAJOR}-postgis-${POSTGIS_MAJOR}-scripts   postgis   postgresql-${PG_MAJOR}-pgrouting # buildkit | 
						
					
						
							| RUN |3 PG_MAJOR=18 POSTGIS_MAJOR=3 VCHORD_VERSION=0.5.3 /bin/sh -c apt reinstall ca-certificates # buildkit | 
						
					
						
							| RUN |3 PG_MAJOR=18 POSTGIS_MAJOR=3 VCHORD_VERSION=0.5.3 /bin/sh -c update-ca-certificates # buildkit | 
						
					
						
							| RUN |3 PG_MAJOR=18 POSTGIS_MAJOR=3 VCHORD_VERSION=0.5.3 /bin/sh -c apt install -y --no-install-recommends postgresql-${PG_MAJOR}-pg-hint-plan # buildkit | 
						
					
						
							| RUN |3 PG_MAJOR=18 POSTGIS_MAJOR=3 VCHORD_VERSION=0.5.3 /bin/sh -c apt install -y --no-install-recommends postgresql-${PG_MAJOR}-pgvector # buildkit | 
						
					
						
							| COPY /usr/share/postgresql/18/extension/timescaledb* /usr/share/postgresql/18/extension/ # buildkit | 
						
					
						
							| COPY /usr/lib/postgresql/18/lib/timescaledb* /usr/lib/postgresql/18/lib/ # buildkit | 
						
					
						
							| COPY /tmp/postgresql-18-vchord_0.5.3-1_amd64.deb /tmp/ # buildkit | 
						
					
						
							| RUN |3 PG_MAJOR=18 POSTGIS_MAJOR=3 VCHORD_VERSION=0.5.3 /bin/sh -c apt-get install -y --no-install-recommends ./postgresql-${PG_MAJOR}-vchord_${VCHORD_VERSION}-1_amd64.deb # buildkit | 
						
					
						
							| RUN |3 PG_MAJOR=18 POSTGIS_MAJOR=3 VCHORD_VERSION=0.5.3 /bin/sh -c rm -rf /var/lib/apt/lists/*   && rm -rf /tmp/* # buildkit | 
						
					
						
							| WORKDIR /var/lib/postgresql/data |