2021-05-10 12:34:29 +00:00
|
|
|
NAMESPACE=alemairebe
|
2021-05-19 12:27:32 +00:00
|
|
|
VERSION=0.0.3
|
2021-05-10 12:34:29 +00:00
|
|
|
|
|
|
|
IMAGE=matrix-webhook
|
|
|
|
|
|
|
|
push: get decompress build
|
|
|
|
|
|
|
|
get:
|
|
|
|
wget https://github.com/turt2live/matrix-appservice-webhooks/archive/refs/heads/master.zip
|
|
|
|
|
|
|
|
decompress:
|
|
|
|
unzip master.zip
|
|
|
|
|
|
|
|
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) \
|
2021-05-17 11:47:39 +00:00
|
|
|
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) \
|
|
|
|
-f Dockerfile matrix-appservice-webhooks-master
|