dda-devops-build/infrastructure/dind/image/resources/install.sh

17 lines
350 B
Bash
Executable file

#!/bin/sh
set -exo pipefail
function main() {
{
apk -U upgrade
apk add --no-cache python3 py3-pip openssl-dev bash git
python3 -m pip install -U pip
pip3 install pybuilder ddadevops deprecation dda-python-terraform boto3 pyyaml inflection
apk cache clean
} > /dev/null
rm -rf /tmp/*
}
main