Bootstrap something to start

This commit is contained in:
Luke Murphy
2020-06-30 20:28:47 +02:00
parent 26caa797b2
commit 7dad478dda
11 changed files with 138 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
build:
@docker build -t autonomic/magicapp .
run:
@docker run --rm -p 5000:5000 autonomic/magicapp
publish:
@docker push autonomic/magicapp:v0.1.0
.PHONY: build run