Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SpectrumIM/spectrum2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Takmazov <vitalyster@gmail.com>2020-08-01 18:22:57 +0300
committerVitaly Takmazov <vitalyster@gmail.com>2020-08-01 18:22:57 +0300
commit8ba2dc15363a0253c1e9c426efbd215ae6d52d90 (patch)
tree174057dc5a6da6ce39123488b6f9e4b0035b40f3
parent39f68a50842bdc50dd7e548a391b9eeec0e89d0e (diff)
Alpine image: update libpqxx to 7.1.2
-rw-r--r--packaging/docker/Dockerfile.alpine5
1 files changed, 2 insertions, 3 deletions
diff --git a/packaging/docker/Dockerfile.alpine b/packaging/docker/Dockerfile.alpine
index d9a90ec0..80c8d1ce 100644
--- a/packaging/docker/Dockerfile.alpine
+++ b/packaging/docker/Dockerfile.alpine
@@ -26,9 +26,8 @@ RUN git clone https://github.com/apache/logging-log4cxx.git && \
RUN git clone https://github.com/jtv/libpqxx.git && \
apk add --no-cache python2 && \
cd libpqxx && \
- git checkout 5.1.1 && \
- ./autogen.sh && \
- ./configure --enable-shared --disable-documentation --prefix=/usr/local && \
+ git checkout 7.1.2 && \
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr/local -DBUILD_TEST=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo && \
make && \
make install