Makefile: fix recursive make of compiled impls.
[jackhill/mal.git] / cpp / Dockerfile
CommitLineData
ecdbada1
JM
1FROM ubuntu:vivid
2MAINTAINER Joel Martin <github@martintribe.org>
9ddaa0b9 3
ecdbada1
JM
4##########################################################
5# General requirements for testing or common across many
6# implementations
7##########################################################
9ddaa0b9 8
ecdbada1
JM
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
9ddaa0b9 18WORKDIR /mal
ecdbada1
JM
19
20##########################################################
21# Specific implementation requirements
22##########################################################
23
24# Install g++ for any C/C++ based implementations
25RUN apt-get -y install g++