16 lines
450 B
Makefile
16 lines
450 B
Makefile
VERSION ?= 3.10.7
|
|
|
|
build:
|
|
docker buildx build \
|
|
--tag git.coopcloud.tech/devydave/rei3-recipe:$(VERSION) \
|
|
https://github.com/r3-team/r3_docker.git \
|
|
--load \
|
|
--build-arg r3_version=$(VERSION) \
|
|
--build-arg r3_os_arch=x64 \
|
|
--build-arg im_policy=/etc/ImageMagick-6/policy.xml
|
|
|
|
push: ## Push the local docker image to registry
|
|
docker login git.coopcloud.tech
|
|
docker push git.coopcloud.tech/devydave/rei3-recipe:${VERSION}
|
|
|