11 lines
449 B
Makefile
11 lines
449 B
Makefile
.PHONY: default
|
|
default: all
|
|
|
|
TAG := $(shell curl -sSL https://raw.githubusercontent.com/Stirling-Tools/Stirling-PDF-chart/refs/heads/main/charts/stirling-pdf/Chart.yaml | yq -r .appVersion)
|
|
|
|
all: build
|
|
|
|
build:
|
|
podman build --build-arg TAG=$(TAG) --platform=linux/amd64,linux/arm64 -t git.leonardoamaral.com.br/zenithtecnologia/stirling-pdf-icp-brasil:$(TAG) .
|
|
podman push git.leonardoamaral.com.br/zenithtecnologia/stirling-pdf-icp-brasil:$(TAG)
|