aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5726467
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
1REPO ?= bndw/satscalc
2TAG_LATEST=$(REPO):latest
3
4all: dev
5
6.PHONY: build
7build:
8 docker build -t $(TAG_LATEST) .
9
10.PHONY: dev
11dev:
12 yarn dev
13
14.PHONY: run
15run:
16 docker run --rm -p 3000:3000 $(TAG_LATEST)