Skip to content

Commit

Permalink
Added ntp and upgraded boost version
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsa committed May 23, 2019
1 parent c7c87c6 commit 60afdde
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ RUN \
libncurses-dev \
doxygen \
ca-certificates \
ntp \
wget \
&& \
apt-get update -y && \
apt-get install -y fish && \
Expand All @@ -36,10 +38,18 @@ RUN \
done && \
git submodule sync --recursive ) && \
git submodule update --init --recursive && \
BOOST_ROOT=$HOME/opt/boost_1_60_0 && \
wget -c 'http://sourceforge.net/projects/boost/files/boost/1.60.0/boost_1_60_0.tar.gz/download' -O boost_1_60_0.tar.gz &&\
tar -zxvf boost_1_60_0.tar.gz && \
cd boost_1_60_0/ && \
./bootstrap.sh "--prefix=$BOOST_ROOT" && \
./b2 install -j$(nproc) && \
cd .. && \
cmake \
-DBOOST_ROOT="$BOOST_ROOT" \
-DCMAKE_BUILD_TYPE=Release \
. && \
make witness_node cli_wallet && \
make witness_node cli_wallet -j$(nproc) && \
install -s programs/witness_node/witness_node programs/cli_wallet/cli_wallet /usr/local/bin && \
#
# Obtain version
Expand Down

0 comments on commit 60afdde

Please sign in to comment.