mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-10 18:43:29 +00:00
fix Makefile
This commit is contained in:
parent
cf20e41b82
commit
f4736a0a0b
@ -3,13 +3,18 @@ include version
|
||||
|
||||
IMAGE=pleroma
|
||||
|
||||
push:
|
||||
wget https://git.pleroma.social/pleroma/pleroma/-/archive/$(VERSION)/pleroma-$(VERSION).tar.bz2 && \
|
||||
tar -xf pleroma-$(VERSION).tar.bz2 && \
|
||||
cd pleroma-$(VERSION) && \
|
||||
push: get decompress build
|
||||
|
||||
get:
|
||||
wget https://git.pleroma.social/pleroma/pleroma/-/archive/$(VERSION)/pleroma-$(VERSION).tar.bz2
|
||||
|
||||
decompress:
|
||||
tar -xf pleroma-$(VERSION).tar.bz2
|
||||
|
||||
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) \
|
||||
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) .
|
||||
--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) pleroma-$(VERSION)
|
||||
|
Loading…
Reference in New Issue
Block a user