'Generic Commit'
Some checks failed
dropshell-build / build (push) Failing after 18s

This commit is contained in:
Your Name
2025-06-06 19:47:15 +12:00
parent 2d646edf0d
commit 35a4670e8f
3 changed files with 146 additions and 1 deletions

View File

@ -93,12 +93,13 @@ WORKDIR /tmp
RUN curl -LO https://ftp.postgresql.org/pub/source/v${POSTGRES_VERSION}/postgresql-${POSTGRES_VERSION}.tar.gz && \
tar xzf postgresql-${POSTGRES_VERSION}.tar.gz && \
cd postgresql-${POSTGRES_VERSION} && \
./configure --prefix=/usr/local/pgsql --without-readline --without-zlib --enable-static --disable-shared && \
./configure --prefix=/usr/local/pgsql --without-readline --without-zlib --without-icu --enable-static --disable-shared && \
cd src/interfaces/libpq && \
make -j$(nproc) && \
make install && \
cd / && rm -rf /tmp/postgresql-${POSTGRES_VERSION} /tmp/postgresql-${POSTGRES_VERSION}.tar.gz
RUN ls /usr/local/include/pgsql/pg_config.h
#ARG DROGON_VERSION=1.9.5
RUN git clone --recurse-submodules https://github.com/drogonframework/drogon.git /tmp/drogon && \