aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..23c4374
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+run:
+ go run .
+lint:
+ golangci-lint run
+docker-build:
+ docker build -t jzhao2k19/ctrl-v:latest .
+docker-run:
+ docker run -p 8080:8080 jzhao2k19/ctrl-v:latest
+docker-all: docker-build docker-run
+docker-push:
+ docker push jzhao2k19/ctrl-v:latest \ No newline at end of file