From 622fe236991789d479a57017c4f33ae3f36e6611 Mon Sep 17 00:00:00 2001 From: Adrien le Maire Date: Tue, 12 Jan 2021 13:06:24 +0100 Subject: [PATCH] try to add ueberauth --- pleroma/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pleroma/Makefile b/pleroma/Makefile index 692f021..1ce8359 100644 --- a/pleroma/Makefile +++ b/pleroma/Makefile @@ -3,7 +3,7 @@ include version IMAGE=pleroma -push: get decompress build +push: get decompress ueberauth build get: wget https://git.pleroma.social/pleroma/pleroma/-/archive/$(VERSION)/pleroma-$(VERSION).tar.bz2 @@ -11,9 +11,11 @@ get: decompress: tar -xf pleroma-$(VERSION).tar.bz2 +ueberauth: + sed -i 's/MIX_ENV\=prod/MIX_ENV\=prod \\\n OAUTH_CONSUMER_STRATEGIES\="twitter facebook google microsoft keycloak:ueberauth_keycloak_strategy"/g' pleroma-$(VERSION)/Dockerfile + build: 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) \