Move common-envs.mk and package.mk from scripts/ to hack/ directory. Update all Makefile includes to use new paths. Remove unused issue-flux-certificates.sh script. Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
22 lines
639 B
Makefile
22 lines
639 B
Makefile
S3MANAGER_TAG=v0.5.0
|
|
|
|
export NAME=s3manager-system
|
|
|
|
include ../../../hack/common-envs.mk
|
|
include ../../../hack/package.mk
|
|
|
|
update:
|
|
@echo Nothing to update
|
|
|
|
image: image-s3manager
|
|
|
|
image-s3manager:
|
|
docker buildx build images/s3manager \
|
|
--tag $(REGISTRY)/s3manager:$(call settag,$(S3MANAGER_TAG)) \
|
|
--cache-from type=registry,ref=$(REGISTRY)/s3manager:latest \
|
|
--cache-to type=inline \
|
|
--metadata-file images/s3manager.json \
|
|
$(BUILDX_ARGS)
|
|
echo "$(REGISTRY)/s3manager:$(call settag,$(S3MANAGER_TAG))@$$(yq e '."containerimage.digest"' images/s3manager.json -o json -r)" \
|
|
> images/s3manager.tag
|
|
rm -f images/s3manager.json
|