Quick fix: Added missing package pkg-config

This commit is contained in:
Srdjan Obucina 2019-08-20 15:51:27 +02:00
parent ef709b7b47
commit 0550711ddf

View file

@ -18,6 +18,7 @@ RUN \
libreadline-dev \ libreadline-dev \
libssl-dev \ libssl-dev \
libtool \ libtool \
pkg-config \
ntp \ ntp \
wget \ wget \
&& \ && \
@ -29,7 +30,7 @@ RUN \
ADD . /peerplays-core ADD . /peerplays-core
WORKDIR /peerplays-core WORKDIR /peerplays-core
# Compile # Compile Boost
RUN \ RUN \
git submodule update --init --recursive && \ git submodule update --init --recursive && \
BOOST_ROOT=$HOME/boost_1_67_0 && \ BOOST_ROOT=$HOME/boost_1_67_0 && \
@ -38,7 +39,11 @@ RUN \
cd boost_1_67_0/ && \ cd boost_1_67_0/ && \
./bootstrap.sh "--prefix=$BOOST_ROOT" && \ ./bootstrap.sh "--prefix=$BOOST_ROOT" && \
./b2 install && \ ./b2 install && \
cd .. && \ cd ..
# Compile Boost
RUN \
BOOST_ROOT=$HOME/boost_1_67_0 && \
mkdir build && \ mkdir build && \
mkdir build/release && \ mkdir build/release && \
cd build/release && \ cd build/release && \