Skip to content

Commit

Permalink
fix ecr push script to tag image after pull and before push (#2655)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddvenk authored Jan 8, 2025
1 parent 9e8e232 commit dd03899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serving/docker/scripts/push_image_from_ECR.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ if [[ "$mode" == "nightly" ]]; then
tag="$image-nightly"
fi
docker pull $from_repo:$image-$mode-$commit_sha
echo docker tag $from_repo:$image-$mode-$commit_sha $to_repo:$tag
docker tag $from_repo:$image-$mode-$commit_sha $to_repo:$tag
docker push $to_repo:$tag

0 comments on commit dd03899

Please sign in to comment.