2025-02-22 01:09:46 -08:00
|
|
|
VERSION := $(shell git describe --always --dirty)
|
|
|
|
|
|
2025-02-15 00:39:51 -08:00
|
|
|
.PHONY: build
|
|
|
|
|
build:
|
|
|
|
|
npm install
|
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
|
|
.PHONY: run
|
|
|
|
|
run:
|
2025-02-22 01:09:46 -08:00
|
|
|
npm run start
|
|
|
|
|
|
|
|
|
|
.PHONY: images
|
|
|
|
|
images:
|
|
|
|
|
docker buildx build --platform linux/arm/v7 -t musicqueue:$(VERSION)-armv7l .
|
|
|
|
|
docker buildx build --platform linux/amd64 -t musicqueue:$(VERSION)-amd64 .
|