Merge pull request #13 from sartography/chore/github_branches_to_docker_tags

Installs AWS CLI
This commit is contained in:
Aaron Louie 2020-05-08 12:11:17 -04:00 committed by GitHub
commit 77962ad83f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,9 @@
#!/bin/bash
# Install AWS CLI
pip install --user awscli;
export PATH=$PATH:$HOME/.local/bin;
# Build and push Docker image to Docker Hub
echo "$DOCKER_TOKEN" | docker login -u "$DOCKER_USERNAME" --password-stdin || exit 1
REPO="sartography/cr-connect-bpmn"