buildx/pleroma/Makefile

16 lines
664 B
Makefile
Raw Normal View History

2021-01-12 10:24:48 +00:00
NAMESPACE=alemairebe
include version
IMAGE=pleroma
push:
2021-01-12 10:34:19 +00:00
wget https://git.pleroma.social/pleroma/pleroma/-/archive/$(VERSION)/pleroma-$(VERSION).tar.bz2 && \
tar -xf pleroma-$(VERSION).tar.bz2 && \
cd pleroma-$(VERSION) && \
2021-01-12 10:24:48 +00:00
docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \
--build-arg OAUTH_CONSUMER_STRATEGIES="twitter facebook google microsoft keycloak:ueberauth_keycloak_strategy" \
--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) .