mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-10 18:43:29 +00:00
22 lines
694 B
Makefile
22 lines
694 B
Makefile
NAMESPACE=alemairebe
|
|
include version
|
|
|
|
IMAGE=dendrite
|
|
|
|
nopush:
|
|
docker buildx build --platform linux/amd64 --load \
|
|
--build-arg VERSION=$(VERSION) \
|
|
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
|
|
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) .
|
|
|
|
push:
|
|
docker buildx build --platform linux/amd64,linux/arm64 --push \
|
|
--build-arg VERSION=$(VERSION) \
|
|
--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) .
|
|
|
|
git-clone:
|
|
git clone -b v${VERSION} --depth 1 https://github.com/matrix-org/dendrite.git
|