From 6710ba062543a27c5400c70cf40149045151a7bc Mon Sep 17 00:00:00 2001 From: Paul Cioanca Date: Tue, 24 Oct 2023 17:34:33 +0300 Subject: [PATCH] chore: fix ubuntu 18 lib collection order (#772) --- Dockerfile-u18 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-u18 b/Dockerfile-u18 index 97ad5278e..09cbfc61c 100644 --- a/Dockerfile-u18 +++ b/Dockerfile-u18 @@ -998,13 +998,13 @@ ARG postgresql_release RUN mkdir -p /tmp/pg_binaries/${postgresql_major} COPY --from=pg_binary_collection_base /usr/lib/postgresql/${postgresql_major} /tmp/pg_binaries/${postgresql_major} -COPY --from=pg_binary_collection_base /usr/lib/postgresql/lib /tmp/pg_binaries/${postgresql_major}/lib COPY --from=pg_binary_collection_base /var/lib/postgresql/extension /tmp/pg_binaries/${postgresql_major}/lib COPY --from=pg_binary_collection_base /usr/lib/aarch64-linux-gnu/libpq.so.5 /tmp/pg_binaries/${postgresql_major}/lib COPY --from=pg_binary_collection_base /usr/lib/aarch64-linux-gnu/libpq.so.5 /tmp/pg_binaries/${postgresql_major}/libpq.so.5 +COPY --from=pg_binary_collection_base /usr/lib/postgresql/lib /tmp/pg_binaries/${postgresql_major}/lib COPY --from=pg_binary_collection_base /usr/share/postgresql/${postgresql_major} /tmp/pg_binaries/${postgresql_major}/share +COPY --from=pg_binary_collection_base /var/lib/postgresql/extension /tmp/pg_binaries/${postgresql_major}/share/extension RUN cd /tmp/pg_binaries && \ tar czvf 18.04.tar.gz ${postgresql_major}/ && \ rm -rf ${postgresql_major}/ -