diff --git a/Makefile/Makefile b/Makefile/Makefile new file mode 100644 index 0000000..b276c3a --- /dev/null +++ b/Makefile/Makefile @@ -0,0 +1,17 @@ +.RECIPEPREFIX := $() $() + +.PHONY = all build push + +all: push run + +build: + docker build . -t yauk.tv/agent + +push: build + docker push yauk.tv/agent + +run: build + docker run --rm --network host yauk.tv/agent + +test: + echo PING \ No newline at end of file