aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 7ba5b28145f1c12023dbb617bb0257052ec879a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
REPO ?= bndw/satscalc
TAG_LATEST=$(REPO):latest

all: dev

.PHONY: build
build:
	docker build -t $(TAG_LATEST) .

.PHONY: dev
dev:
	yarn dev

.PHONY: run
run:
	docker run --rm -p 3000:3000 $(TAG_LATEST)

.PHONY: static
static:
	yarn build