Skip to content

Commit

Permalink
Fix travis script
Browse files Browse the repository at this point in the history
  • Loading branch information
gupta-utkarsh committed Dec 16, 2017
1 parent bb190d7 commit eda6555
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/deploy.sh
Expand Up @@ -12,7 +12,7 @@ ZIP=$VERSION.zip
openssl aes-256-cbc -K $encrypted_47cc4c169e78_key -iv $encrypted_47cc4c169e78_iv -in CloudCV.json.enc -out CloudCV.json -d
aws configure set default.region us-west-2
# Authenticate against our Docker registry
eval $(aws ecr get-login)
eval $(aws ecr get-login | sed 's|https://||')

# Build and push the image
docker build -t cloudcv/django -f docker/production/django/Dockerfile .
Expand Down
2 changes: 1 addition & 1 deletion scripts/stage.sh
Expand Up @@ -12,7 +12,7 @@ ZIP=$VERSION.zip
openssl aes-256-cbc -K $encrypted_47cc4c169e78_key -iv $encrypted_47cc4c169e78_iv -in CloudCV.json.enc -out CloudCV.json -d
aws configure set default.region us-west-2
# Authenticate against our Docker registry
eval $(aws ecr get-login)
eval $(aws ecr get-login | sed 's|https://||')

# Build and push the image
docker build -t cloudcv/staging/django -f docker/staging/django/Dockerfile .
Expand Down

0 comments on commit eda6555

Please sign in to comment.