2015-10-07 02:28:46 +03:00
|
|
|
FROM ubuntu:vivid
|
|
|
|
MAINTAINER Joel Martin <github@martintribe.org>
|
2015-03-26 14:08:35 +03:00
|
|
|
|
2015-10-07 02:28:46 +03:00
|
|
|
##########################################################
|
|
|
|
# General requirements for testing or common across many
|
|
|
|
# implementations
|
|
|
|
##########################################################
|
2015-03-26 14:08:35 +03:00
|
|
|
|
2015-10-07 02:28:46 +03:00
|
|
|
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
|
2015-03-26 14:08:35 +03:00
|
|
|
WORKDIR /mal
|
2015-10-07 02:28:46 +03:00
|
|
|
|
|
|
|
##########################################################
|
|
|
|
# Specific implementation requirements
|
|
|
|
##########################################################
|
|
|
|
|
|
|
|
# Install g++ for any C/C++ based implementations
|
|
|
|
RUN apt-get -y install g++
|