We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 219b87c commit b784a4dCopy full SHA for b784a4d
circleci/images/exttester/Dockerfile
@@ -186,4 +186,11 @@ RUN mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgres
186
# copy the collected files from the collection container at once into the final container
187
COPY --from=dev-tools-collection /collect/ /
188
189
+ARG PG_MAJOR
190
+RUN set -eux; \
191
+ ln -sf /usr/lib/x86_64-linux-gnu/libpq.so.5 \
192
+ /usr/lib/postgresql/${PG_MAJOR}/lib/libpq.so.5; \
193
+ echo "/usr/lib/x86_64-linux-gnu" > /etc/ld.so.conf.d/libpq.conf; \
194
+ ldconfig
195
+
196
WORKDIR /home/circleci
0 commit comments