This repository has been archived on 2024-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
flow-packer/Makefile
2022-04-24 16:19:38 +01:00

18 lines
346 B
Makefile

IMAGE_TYPE ?= lxd
BUILD_DIR = ./build
.PHONY: json
json:
@jsonnet --ext-str type="$(IMAGE_TYPE)" -o $(BUILD_DIR)/image.pkr.json main.jsonnet
.PHONY: build
build: validate
@packer build $(BUILD_DIR)
.PHONY: validate
validate: json
@packer validate $(BUILD_DIR)
.PHONY: clean
clean:
@find ./build -type f -not -iname .gitkeep | xargs rm -f