From e2dd2cc4836a42bfc72a6ff0a702ef12a9d9ca0c Mon Sep 17 00:00:00 2001 From: Your Name Date: Fri, 6 Jun 2025 20:44:38 +1200 Subject: [PATCH] 'Generic Commit' --- build-base/Dockerfile.dropshell-build-base | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build-base/Dockerfile.dropshell-build-base b/build-base/Dockerfile.dropshell-build-base index 06888df..af1d601 100644 --- a/build-base/Dockerfile.dropshell-build-base +++ b/build-base/Dockerfile.dropshell-build-base @@ -34,12 +34,7 @@ RUN apk add --no-cache \ binutils \ binutils-dev \ pipx \ - openssl-dev \ - sqlite-dev \ - libpq-dev \ - mariadb-connector-c-dev \ ninja \ - util-linux-dev \ util-linux-static \ perl @@ -92,8 +87,8 @@ RUN curl -LO https://ftp.postgresql.org/pub/source/v${POSTGRES_VERSION}/postgres tar xzf postgresql-${POSTGRES_VERSION}.tar.gz && \ cd postgresql-${POSTGRES_VERSION} && \ ./configure --prefix=/usr/local/pgsql --without-readline --without-zlib --without-icu --enable-static --disable-shared && \ - cd src/interfaces/libpq && \ make -j$(nproc) && \ + make -C src/interfaces/libpq install && \ make install && \ cd / && rm -rf /tmp/postgresql-${POSTGRES_VERSION} /tmp/postgresql-${POSTGRES_VERSION}.tar.gz