jenkins-podman/Makefile

27 lines
591 B
Makefile
Raw Normal View History

2022-01-14 00:23:18 +00:00
VERSION ?= 0.2.1
2022-01-13 11:41:17 +00:00
BASE ?= latest-alpine-jdk11
REGISTRY := public.ecr.aws/zero-downtime
REPOSITORY := jenkins-podman
TAG := $(REPOSITORY):v$(VERSION)
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
2022-01-13 11:41:17 +00:00
all: build
build:
podman build --rm --squash-all --build-arg BASE=$(BASE) -t $(TAG) .
push:
aws ecr-public get-login-password --region us-east-1 | podman login --username AWS --password-stdin $(REGISTRY)
podman tag $(TAG) $(REGISTRY)/$(TAG)
podman push $(REGISTRY)/$(TAG)
scan:
trivy $(TRIVY_OPTS) $(TAG)