buildx/keycloak/Makefile
2020-07-29 16:01:00 +02:00

14 lines
537 B
Makefile

include keycloak/keycloak.version
keycloak-nopush:
docker buildx build --platform linux/amd64 --load \
--build-arg KEYCLOAK_VERSION=$(KEYCLOAK_VERSION) \
--tag alemairebe/keycloak:$(KEYCLOAK_VERSION) keycloak
keycloak:
docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \
--build-arg KEYCLOAK_VERSION=$(KEYCLOAK_VERSION) \
--cache-from=type=registry,ref=alemairebe/keycloak \
--cache-to=type=registry,ref=alemairebe/keycloak \
--tag alemairebe/keycloak:$(KEYCLOAK_VERSION) keycloak