Skip to content

Commit 5864546

Browse files
committed
Bump.
1 parent d359dc4 commit 5864546

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:latest
1+
FROM ubuntu:latest
22

33
ARG BOOST_VERSION="1.87.0"
44
ARG BOOST_VARIANT="release"

scripts/install_boost.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ tar -xf boost_$BOOST_VERSION_DASH.tar.gz
1717
cd boost_$BOOST_VERSION_DASH
1818
sh bootstrap.sh
1919

20-
./b2 install $BOOST_VARIANT variant=$BOOST_VARIANT debug-symbols=$DEBUG
20+
./b2 install $BOOST_VARIANT variant=$BOOST_VARIANT debug-symbols=$DEBUG --without-python
2121

2222
cd ..
2323
rm boost_$BOOST_VERSION_DASH -rf

scripts/install_build_dependencies.bash

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,22 @@ apt-get install -y -qq lsb-release \
2525
libssl-dev \
2626
zlib1g-dev \
2727
libcurl4-gnutls-dev \
28-
libprotobuf-dev
28+
libprotobuf-dev \
29+
python3
2930

3031
ln -fs /usr/share/zoneinfo/$TZ /etc/localtime
3132
dpkg-reconfigure -f noninteractive tzdata
3233
apt-get clean
3334
apt-get autoclean
3435
apt-get autoremove
36+
37+
git clone https://github.com/trusch/libbcrypt bcrypt
38+
cd bcrypt
39+
mkdir build
40+
cd build
41+
cmake ..
42+
make
43+
make install
44+
ldconfig
45+
cd ../..
46+
rm bcrypt -Rf

0 commit comments

Comments
 (0)