summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-05-06 14:02:57 -0600
committerkballou <kballou@devnulllabs.io>2016-05-11 11:06:10 -0600
commite3578dec09c940badb7bd8107bdff031e43e234f (patch)
tree3f132f695fbb13850cea4b2d4adcdb8f726f9cf3 /Makefile
downloaddocker-elixir-e3578dec09c940badb7bd8107bdff031e43e234f.tar.gz
docker-elixir-e3578dec09c940badb7bd8107bdff031e43e234f.tar.xz
Alpine Elixir Docker Image
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0d9a8f4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+TAG=kennyballou/docker-elixir
+all: build
+.PHONY: all clean
+
+build: Dockerfile
+ @docker build -t ${TAG} .
+
+clean:
+ @docker rmi ${TAG}