add dockerfile environment

This commit is contained in:
2021-11-21 20:51:56 +06:00
parent e86d07d25d
commit fcc0b49576
7 changed files with 51 additions and 1 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
#!make
.ONESHELL:
.PHONY:
clean:
./gradlew clean
build:
./gradlew build
start:
./gradlew run
startCompose:
docker-compose build && docker-compose up
buildAndStartCompose:
make clean build startCompose