File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
circleci/images/exttester Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,25 @@ apt-get install -y --no-install-recommends --allow-downgrades \
173173rm -rf /var/lib/apt/lists/*
174174EOF
175175
176+ RUN <<'EOF'
177+ apt purge -y \
178+ libpq5 \
179+
180+ apt-get install -y --no-install-recommends --allow-downgrades \
181+ libdbi-perl \
182+ libdbd-pg-perl \
183+ libpq-dev=${pgdg_version} \
184+ libpq5=${pgdg_version} \
185+ postgresql-${PG_MAJOR}=${pgdg_version} \
186+ postgresql-client-${PG_MAJOR}=${pgdg_version} \
187+ postgresql-${PG_MAJOR}-dbgsym=${pgdg_version} \
188+ postgresql-server-dev-${PG_MAJOR}=${pgdg_version} \
189+ postgresql-${PG_MAJOR}-wal2json \
190+
191+ # clear apt cache
192+ rm -rf /var/lib/apt/lists/*
193+ EOF
194+
176195# add postgress to the path
177196ENV PATH=/usr/lib/postgresql/$PG_MAJOR/bin/:$PATH
178197
You can’t perform that action at this time.
0 commit comments