summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordmgerman <dmg@uvic.ca>2015-11-30 13:46:09 -0800
committerdmgerman <dmg@uvic.ca>2015-11-30 13:46:09 -0800
commit43479605c825f9262798de33c04946b34cc36a28 (patch)
tree2b67c6381f9ab6a806a71c72e9c3c3f284fe8b02
parent68a140d881288db4f634da152aebad9e60b77576 (diff)
parent309fb95efedbcc6027f2166739104740551881f6 (diff)
downloadninka-43479605c825f9262798de33c04946b34cc36a28.tar.gz
Merge pull request #23 from bfirsh/master
Add Dockerfile
-rw-r--r--Dockerfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..7efec07
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,5 @@
+FROM perl:5.20
+COPY . /usr/src/myapp
+WORKDIR /usr/src/myapp
+RUN perl Makefile.PL; make; make install
+ENTRYPOINT [ "/usr/local/bin/ninka" ]