Skip to content

Commit

Permalink
add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Jun 20, 2024
1 parent 07006a2 commit 4ddba01
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions MakeFile
Original file line number Diff line number Diff line change
@@ -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) .

0 comments on commit 4ddba01

Please sign in to comment.