aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorkballou <kballou@devnulllabs.io>2016-05-18 16:52:26 -0600
committerkballou <kballou@devnulllabs.io>2016-05-18 21:58:11 -0600
commit28ab636cf66cc05ff71e12fb87dbc137f532c9a0 (patch)
treec85366b87d4da0467386609b36f6626e012b3d9d /Makefile
parentb117ed60295b4999b6ea71c939935a0c242d5423 (diff)
downloaddocker-elixir-centos-28ab636cf66cc05ff71e12fb87dbc137f532c9a0.tar.gz
docker-elixir-centos-28ab636cf66cc05ff71e12fb87dbc137f532c9a0.tar.xz
Add dockerfile and makefileex-1.2.5-otp-18.3.3
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..b873113
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+TAG=kennyballou/docker-elixir-centos
+all: build
+.PHONY: all clean
+
+build: Dockerfile
+ @docker build -t ${TAG} .
+
+clean:
+ @docker rmi ${TAG}