Skip to content

Commit

Permalink
Merge pull request #5 from intellix/pg-repack-1-4-7
Browse files Browse the repository at this point in the history
Upgrades to pg_repack 1.4.7 (supports pg14)
  • Loading branch information
hartmut-co-uk authored Oct 11, 2022
2 parents 4675803 + 1d2cdb4 commit 406b0a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:13
FROM postgres:14

RUN apt-get update --fix-missing && \
apt-get install -y postgresql-server-dev-$PG_MAJOR wget openssh-server
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ This images follows the pg_repack releases + compatibility with PostgreSQL.
| 11 | 1.4.4 |
| 12 | 1.4.5 |
| 13 | 1.4.6 |
| 14 | 1.4.7 |


## Dockerhub
Expand Down
4 changes: 2 additions & 2 deletions scripts/install_pg_repack.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

apt-get install -y make unzip gcc libssl-dev zlib1g-dev libreadline-dev
wget -q -O pg_repack.zip "https://api.pgxn.org/dist/pg_repack/1.4.6/pg_repack-1.4.6.zip"
apt-get install -y make unzip gcc libssl-dev zlib1g-dev liblz4-dev libreadline-dev
wget -q -O pg_repack.zip "https://api.pgxn.org/dist/pg_repack/1.4.7/pg_repack-1.4.7.zip"
unzip pg_repack.zip && rm pg_repack.zip
cd pg_repack-*
make && make install
Expand Down

0 comments on commit 406b0a1

Please sign in to comment.