diff --git a/Makefile b/Makefile new file mode 100644 index 00000000000000..d10c8108edb516 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: image push + +image: + docker build -t euank/mastodon:$(shell git describe --tags) . + +push: + docker push euank/mastodon:$(shell git describe --tags)