Add dockerfile
authorVasilij Schneidermann <mail@vasilij.de>
Mon, 10 Jul 2017 19:39:05 +0000 (21:39 +0200)
committerVasilij Schneidermann <mail@vasilij.de>
Mon, 10 Jul 2017 19:39:05 +0000 (21:39 +0200)
gst/Dockerfile [new file with mode: 0644]

diff --git a/gst/Dockerfile b/gst/Dockerfile
new file mode 100644 (file)
index 0000000..81b7ceb
--- /dev/null
@@ -0,0 +1,26 @@
+FROM ubuntu:wily
+MAINTAINER Joel Martin <github@martintribe.org>
+
+##########################################################
+# General requirements for testing or common across many
+# implementations
+##########################################################
+
+RUN apt-get -y update
+
+# Required for running tests
+RUN apt-get -y install make python
+
+# Some typical implementation and test requirements
+RUN apt-get -y install curl libreadline-dev libedit-dev
+
+RUN mkdir -p /mal
+WORKDIR /mal
+
+##########################################################
+# Specific implementation requirements
+##########################################################
+
+# picolisp
+RUN apt-get -y install gnu-smalltalk
+