From 39ce46638f28bbb035c18c293dc00eab1b8da9f7 Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 26 Aug 2024 02:20:43 +0900 Subject: [PATCH] add Makefile --- Makefile/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile/Makefile 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