Adds a 30 second delay before refreshing DC/OS, in case Docker Hub takes a bit to update its cache

This commit is contained in:
Aaron Louie 2020-04-23 14:47:07 -04:00
parent 796c109611
commit 14c82f4044
1 changed files with 5 additions and 0 deletions

View File

@ -5,5 +5,10 @@ echo "$DOCKER_TOKEN" | docker login -u "$DOCKER_USERNAME" --password-stdin
docker build --no-cache -t sartography/cr-connect-backend:latest . || exit 1;
docker push sartography/cr-connect-backend:latest || exit 1;
# Wait for Docker Hub
echo "Publishing to Docker Hub..."
sleep 30
# Notify UVA DCOS that Docker image has been updated
echo "Refreshing DC/OS..."
aws sqs send-message --queue-url 'https://queue.amazonaws.com/474683445819/dcos-refresh' --message-body 'crconnect/backend' || exit 1;