mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-11 02:53:30 +00:00
20 lines
507 B
Makefile
20 lines
507 B
Makefile
|
NAMESPACE=alemairebe
|
||
|
include version
|
||
|
|
||
|
IMAGE=shields
|
||
|
|
||
|
push: get decompress build
|
||
|
|
||
|
get:
|
||
|
wget https://github.com/badges/shields/archive/$(VERSION).tar.gz
|
||
|
|
||
|
decompress:
|
||
|
tar $(VERSION).tar.bz2
|
||
|
|
||
|
build:
|
||
|
docker buildx build --platform linux/amd64,linux/arm64 --push \
|
||
|
--cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
|
||
|
--cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
|
||
|
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
|
||
|
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) shields-$(VERSION)
|