.PHONY: docker-build
docker-build:
	docker run --rm -it \
		-v "$(CURDIR)":/app \
		-w /app \
		node:25 \
		bash -lc "yarn install && yarn build"
