From 8aaaae929e1c81ef54fb563d1d0c8c7b3313192b Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Mon, 15 Mar 2021 15:11:00 +0300 Subject: [PATCH] builder: install Rust (needed for cryptography) --- builder/image-software.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builder/image-software.sh b/builder/image-software.sh index 528033f2..77a24218 100755 --- a/builder/image-software.sh +++ b/builder/image-software.sh @@ -134,6 +134,9 @@ echo_stamp "Make sure both pip and pip3 are installed" pip --version pip3 --version +echo_stamp "Install Rust" # needed for cryptography module +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + echo_stamp "Install and enable Butterfly (web terminal)" echo_stamp "Workaround for tornado >= 6.0 breaking butterfly" my_travis_retry pip3 install tornado==5.1.1