Skip to content

Commit

Permalink
Update circleci/images/exttester/Dockerfile
Browse files Browse the repository at this point in the history
Co-authored-by: Hanefi Onaldi <Hanefi.Onaldi@microsoft.com>
  • Loading branch information
naisila and hanefi authored Aug 17, 2023
1 parent c55d02b commit 9839f12
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions circleci/images/exttester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,15 @@ RUN echo "deb https://apt.postgresql.org/pub/repos/apt bullseye-pgdg main" >> /e
libpq5=${pgdg_version} \
postgresql-client-${PG_MAJOR}=${pgdg_version} \
postgresql-${PG_MAJOR}-dbgsym=${pgdg_version} \
postgresql-server-dev-${PG_MAJOR}=${pgdg_version}
postgresql-server-dev-${PG_MAJOR}=${pgdg_version} \

# wal2json not available yet for PG16
RUN if [ "$PG_MAJOR" != "16" ]; \
&& if [ "$PG_MAJOR" != "16" ]; \
then \
apt-get install -y --no-install-recommends --allow-downgrades postgresql-${PG_MAJOR}-wal2json; \
fi;

fi; \
# clear apt cache
&& rm -rf /var/lib/apt/lists/*
# clear apt cache
RUN rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 9839f12

Please sign in to comment.