jenkins-podman/Makefile

33 lines
956 B
Makefile
Raw Normal View History

2022-01-13 11:41:17 +00:00
REGISTRY := public.ecr.aws/zero-downtime
REPOSITORY := jenkins-podman
REGION := us-east-1
2022-01-15 23:19:44 +00:00
# Parse version from latest git semver tag
GTAG=$(shell git describe --tags --match v*.*.* 2>/dev/null || git rev-parse --short HEAD 2>/dev/null)
2022-01-15 23:19:44 +00:00
TAG ?= $(shell echo $(GTAG) | awk -F '-' '{ print $$1 "-" $$2 }' | sed -e 's/-$$//')
2022-01-13 11:41:17 +00:00
2022-01-13 15:53:54 +00:00
ifeq ($(TRIVY_REMOTE),)
TRIVY_OPTS := image
else
TRIVY_OPTS := client --remote ${TRIVY_REMOTE}
endif
.PHONY: build push scan test
2022-01-13 11:41:17 +00:00
all: build
build:
podman build --rm --squash-all -t $(REPOSITORY):$(TAG) -t $(REPOSITORY):latest .
2022-01-13 11:41:17 +00:00
push:
aws ecr-public get-login-password --region $(REGION) | podman login --username AWS --password-stdin $(REGISTRY)
2022-01-15 23:19:44 +00:00
podman tag $(REPOSITORY):latest $(REGISTRY)/$(REPOSITORY):$(TAG) $(REGISTRY)/$(REPOSITORY):latest
podman push $(REGISTRY)/$(REPOSITORY):$(TAG)
podman push $(REGISTRY)/$(REPOSITORY):latest
2022-01-13 11:41:17 +00:00
scan:
trivy $(TRIVY_OPTS) $(REPOSITORY):$(TAG)
2022-01-16 10:55:02 +00:00
test:
@echo "Not implemented (yet)"