Squashed '.ci/' changes from ea9c914..01df38b
01df38b feat: move ecr-login into its own task git-subtree-dir: .ci git-subtree-split: 01df38b42484ca4cfd0bc2cc0a927e2c2f322a91
This commit is contained in:
parent
431fadf1e0
commit
47e7d57dd8
@ -26,10 +26,12 @@ scan: build
|
||||
@echo "Scanning $(REGISTRY)/$(IMAGE):$(TAG) using Trivy"
|
||||
@trivy image $(TRIVY_OPTS) $(REGISTRY)/$(IMAGE):$(TAG)
|
||||
|
||||
push: build
|
||||
@aws ecr-public get-login-password --region $(REGION) | docker login --username AWS --password-stdin $(REGISTRY)
|
||||
push: ecr-login build
|
||||
@for t in $(TAG) latest $(EXTRA_TAGS); do echo "tag and push: $$t"; docker tag $(IMAGE):$(TAG) $(REGISTRY)/$(IMAGE):$$t && docker push $(REGISTRY)/$(IMAGE):$$t; done
|
||||
|
||||
ecr-login:
|
||||
@aws ecr-public get-login-password --region $(REGION) | docker login --username AWS --password-stdin $(REGISTRY)
|
||||
|
||||
clean: rm-test-image rm-image
|
||||
|
||||
# Delete all untagged images
|
||||
|
Loading…
Reference in New Issue
Block a user