From 9ffbba076539060cb49e10d97ebd1df2d2cd86e7 Mon Sep 17 00:00:00 2001 From: Michael Jerger Date: Thu, 20 Jul 2023 12:14:25 +0200 Subject: [PATCH] add pyb to clojure image --- infrastructure/clojure/image/resources/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/infrastructure/clojure/image/resources/install.sh b/infrastructure/clojure/image/resources/install.sh index 692c434..f89293d 100755 --- a/infrastructure/clojure/image/resources/install.sh +++ b/infrastructure/clojure/image/resources/install.sh @@ -36,6 +36,11 @@ function main() { #install lein /tmp/lein.sh + #install pyb + apt -qqy install python3 python3-pip git; + python3 -m pip install -U pip; + pip3 install pybuilder ddadevops deprecation dda-python-terraform boto3 pyyaml inflection; + cleanupDocker }