Last active
November 16, 2024 16:43
-
-
Save mdesantis/5539d751731cef5b79074f3a64bc79e1 to your computer and use it in GitHub Desktop.
Dockerfile of PostgreSQL 16 with pgxman and pgsearch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM postgres:16 | |
RUN set -eux; \ | |
dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')"; \ | |
apt-get update; \ | |
apt-get install -y --no-install-recommends ca-certificates wget; \ | |
wget -O /usr/share/keyrings/pgxman-cli.gpg https://apt.pgxman.com/pgxman-keyring.gpg; \ | |
echo "deb [arch=${dpkgArch} signed-by=/usr/share/keyrings/pgxman-cli.gpg] https://apt.pgxman.com/cli stable main" > /etc/apt/sources.list.d/pgxman-cli.list; \ | |
apt-get update; \ | |
apt-get install -y --no-install-recommends pgxman; \ | |
rm -rf /var/lib/apt/lists/*; \ | |
pgxman install -y pg_search; \ | |
apt-get purge -y pgxman ca-certificates wget; \ | |
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment