Skip to content

Commit 6710ba0

Browse files
authored
chore: fix ubuntu 18 lib collection order (#772)
1 parent 04e8008 commit 6710ba0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile-u18

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -998,13 +998,13 @@ ARG postgresql_release
998998

999999
RUN mkdir -p /tmp/pg_binaries/${postgresql_major}
10001000
COPY --from=pg_binary_collection_base /usr/lib/postgresql/${postgresql_major} /tmp/pg_binaries/${postgresql_major}
1001-
COPY --from=pg_binary_collection_base /usr/lib/postgresql/lib /tmp/pg_binaries/${postgresql_major}/lib
10021001
COPY --from=pg_binary_collection_base /var/lib/postgresql/extension /tmp/pg_binaries/${postgresql_major}/lib
10031002
COPY --from=pg_binary_collection_base /usr/lib/aarch64-linux-gnu/libpq.so.5 /tmp/pg_binaries/${postgresql_major}/lib
10041003
COPY --from=pg_binary_collection_base /usr/lib/aarch64-linux-gnu/libpq.so.5 /tmp/pg_binaries/${postgresql_major}/libpq.so.5
1004+
COPY --from=pg_binary_collection_base /usr/lib/postgresql/lib /tmp/pg_binaries/${postgresql_major}/lib
10051005
COPY --from=pg_binary_collection_base /usr/share/postgresql/${postgresql_major} /tmp/pg_binaries/${postgresql_major}/share
1006+
COPY --from=pg_binary_collection_base /var/lib/postgresql/extension /tmp/pg_binaries/${postgresql_major}/share/extension
10061007

10071008
RUN cd /tmp/pg_binaries && \
10081009
tar czvf 18.04.tar.gz ${postgresql_major}/ && \
10091010
rm -rf ${postgresql_major}/
1010-

0 commit comments

Comments
 (0)