This commit is contained in:
@ -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 && \
|
||||
|
Reference in New Issue
Block a user