n日以降に ECR に push された image を調べる

今後もつかそうなのでメモ

aws ecr describe-images --repository-name $REPOSITORY  --query "reverse(sort_by(imageDetails[*], &imagePushedAt))" | jq '.[] | select(.imagePushedAt > "2022-12-01T00:00:00+09:00")'

REPOSITORY に pushされた image を取得することができる