Skip to content

Commit

Permalink
ci: install pg13 in docker image (#186)
Browse files Browse the repository at this point in the history
Signed-off-by: usamoi <usamoi@outlook.com>
  • Loading branch information
usamoi authored Feb 11, 2025
1 parent 9b3ead3 commit e92d6dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/pgrx.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN set -ex; \
RUN /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y
# install all the PostgresQL
RUN set -ex; \
for v in $(seq 14 17); do \
for v in $(seq 13 17); do \
apt install -y --no-install-recommends postgresql-$v postgresql-server-dev-$v postgresql-$v-pgvector; \
done; \
rm -rf /var/lib/apt/lists/*;
Expand All @@ -57,7 +57,7 @@ RUN rustup target add $(uname -m)-unknown-linux-gnu
RUN cargo install cargo-pgrx --locked --version=${PGRX_VERSION}

RUN set -ex; \
for v in $(seq 14 17); do \
for v in $(seq 13 17); do \
cargo pgrx init --pg$v=/usr/lib/postgresql/$v/bin/pg_config; \
done;

Expand Down

0 comments on commit e92d6dc

Please sign in to comment.