From 4ddba018bcb5f4b516840bd258220590bc3dc7e5 Mon Sep 17 00:00:00 2001 From: xxl4 Date: Thu, 20 Jun 2024 14:49:49 +0800 Subject: [PATCH] add makefile --- MakeFile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 MakeFile diff --git a/MakeFile b/MakeFile new file mode 100644 index 00000000..ffc2d144 --- /dev/null +++ b/MakeFile @@ -0,0 +1,18 @@ + +CMD=php +TEST=./vendor/bin/pest +# application name +PROJECT:=NexaMerchant +# application version +VERSION := 2.0.0 +# application url +URL := https://github.com/xxl4/NexaMerchant + +.PHONY: build + +build: + docker build -t $(PROJECT):$(VERSION) . + +# build go application +build-docker: + docker build -t $(PROJECT):$(VERSION) . \ No newline at end of file