11 lines
164 B
Makefile
11 lines
164 B
Makefile
PKG=invoiceninja
|
|
VER=1.0.0
|
|
|
|
all: build pack
|
|
|
|
build:
|
|
docker buildx build --tag $(PKG):$(VER) --platform linux/arm64 . --load
|
|
|
|
pack:
|
|
start-sdk pack
|
|
|