Skip to content

Commit

Permalink
add workaround for aws/aws-cli#3007
Browse files Browse the repository at this point in the history
  • Loading branch information
delgod committed May 23, 2018
1 parent f8d48f6 commit 79b0b74
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions vars/installDocker.groovy
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
def call() {
sh '''
sudo yum -y install git epel-release
sudo yum -y install '/usr/bin/aws'
sudo yum -y install git curl epel-release
sudo yum -y install python36
curl -fsSL https://bootstrap.pypa.io/3.3/get-pip.py -o get-pip.py
sudo python36 get-pip.py
export PATH=${PATH}:/usr/local/bin
sudo pip install awscli==1.15.19
curl -fsSL get.docker.com -o get-docker.sh
env -i sh get-docker.sh || sudo yum -y install docker
sudo usermod -aG docker `id -u -n`
Expand Down

0 comments on commit 79b0b74

Please sign in to comment.