buildx/synapse/Makefile

21 lines
566 B
Makefile
Raw Normal View History

NAMESPACE=alemairebe
2021-04-29 13:37:57 +00:00
VERSION=1.32.2
IMAGE=synapse
2021-04-29 13:56:47 +00:00
.ONESHELL: # Applies to every targets in the file!
push: get decompress build
get:
2021-04-29 13:37:57 +00:00
wget https://github.com/matrix-org/synapse/archive/refs/tags/v$(VERSION).tar.gz
decompress:
2021-04-29 13:37:57 +00:00
tar -xf v$(VERSION).tar.gz
build:
2021-04-29 13:56:47 +00:00
cd ${IMAGE}-${VERSION} && pwd
docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \
2021-04-29 13:16:05 +00:00
--cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
2021-04-29 13:56:47 +00:00
--cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) docker