DISABLE FDs (REMOVE ME).
[jackhill/mal.git] / elixir / Dockerfile
CommitLineData
007e4bf8 1FROM ubuntu:xenial
fc4c7889
JM
2MAINTAINER Joel Martin <github@martintribe.org>
3
4##########################################################
5# General requirements for testing or common across many
6# implementations
7##########################################################
8
9RUN apt-get -y update
10
11# Required for running tests
12RUN apt-get -y install make python
13
14# Some typical implementation and test requirements
15RUN apt-get -y install curl libreadline-dev libedit-dev
16
17RUN mkdir -p /mal
18WORKDIR /mal
19
20##########################################################
21# Specific implementation requirements
22##########################################################
23
24# Elixir
007e4bf8
MP
25RUN apt-get install -y wget
26RUN wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb
27RUN dpkg -i erlang-solutions_1.0_all.deb
28RUN apt-get update -y
29RUN apt-get install -y esl-erlang
30RUN apt-get install -y elixir