aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 6386336..421bb16 100644
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,6 @@ all: dev
7 7
8.PHONY: build 8.PHONY: build
9build: 9build:
10 yarn
11 yarn build
12 docker build -t $(TAG_LATEST) . 10 docker build -t $(TAG_LATEST) .
13 11
14.PHONY: dev 12.PHONY: dev
@@ -17,7 +15,7 @@ dev:
17 yarn start 15 yarn start
18 16
19.PHONY: run 17.PHONY: run
20run: build 18run:
21 docker run --rm -p 8080:80 $(TAG_LATEST) 19 docker run --rm -p 8080:80 $(TAG_LATEST)
22 20
23.PHONY: publish 21.PHONY: publish