File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM debian :latest
1
+ FROM ubuntu :latest
2
2
3
3
ARG BOOST_VERSION="1.87.0"
4
4
ARG BOOST_VARIANT="release"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ tar -xf boost_$BOOST_VERSION_DASH.tar.gz
17
17
cd boost_$BOOST_VERSION_DASH
18
18
sh bootstrap.sh
19
19
20
- ./b2 install $BOOST_VARIANT variant=$BOOST_VARIANT debug-symbols=$DEBUG
20
+ ./b2 install $BOOST_VARIANT variant=$BOOST_VARIANT debug-symbols=$DEBUG --without-python
21
21
22
22
cd ..
23
23
rm boost_$BOOST_VERSION_DASH -rf
Original file line number Diff line number Diff line change @@ -25,10 +25,22 @@ apt-get install -y -qq lsb-release \
25
25
libssl-dev \
26
26
zlib1g-dev \
27
27
libcurl4-gnutls-dev \
28
- libprotobuf-dev
28
+ libprotobuf-dev \
29
+ python3
29
30
30
31
ln -fs /usr/share/zoneinfo/$TZ /etc/localtime
31
32
dpkg-reconfigure -f noninteractive tzdata
32
33
apt-get clean
33
34
apt-get autoclean
34
35
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
You can’t perform that action at this time.
0 commit comments