From 0550711ddf57b5669cc3e5a7715cd8ad68a16a81 Mon Sep 17 00:00:00 2001 From: Srdjan Obucina Date: Tue, 20 Aug 2019 15:51:27 +0200 Subject: [PATCH] Quick fix: Added missing package pkg-config --- Dockerfile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b5cf9ad5..eeb7ab15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ RUN \ libreadline-dev \ libssl-dev \ libtool \ + pkg-config \ ntp \ wget \ && \ @@ -29,7 +30,7 @@ RUN \ ADD . /peerplays-core WORKDIR /peerplays-core -# Compile +# Compile Boost RUN \ git submodule update --init --recursive && \ BOOST_ROOT=$HOME/boost_1_67_0 && \ @@ -38,7 +39,11 @@ RUN \ cd boost_1_67_0/ && \ ./bootstrap.sh "--prefix=$BOOST_ROOT" && \ ./b2 install && \ - cd .. && \ + cd .. + +# Compile Boost +RUN \ + BOOST_ROOT=$HOME/boost_1_67_0 && \ mkdir build && \ mkdir build/release && \ cd build/release && \