Removing useless binary in conf + managing services url resolution at runtime
This commit is contained in:
22
Makefile
Normal file
22
Makefile
Normal file
@@ -0,0 +1,22 @@
|
||||
.DEFAULT_GOAL := all
|
||||
|
||||
all:
|
||||
clean docker publish-kind publish-registry
|
||||
|
||||
run:
|
||||
flutter run
|
||||
|
||||
clean:
|
||||
rm -rf build
|
||||
|
||||
docker:
|
||||
DOCKER_BUILDKIT=1 docker build -t oc/oc-front:0.0.1 -f Dockerfile .
|
||||
docker tag oc/oc-front:0.0.1 oc/oc-front:latest
|
||||
|
||||
publish-kind:
|
||||
kind load docker-image oc/oc-front:0.0.1 --name opencloud
|
||||
|
||||
publish-registry:
|
||||
@echo "TODO"
|
||||
|
||||
.PHONY: build run clean docker publish-kind publish-registry
|
||||
Reference in New Issue
Block a user