FROM ubuntu:xenial MAINTAINER Joel Martin ########################################################## # 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 ########################################################## RUN apt-get -y install build-essential RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - RUN apt-get -y install nodejs ENV NPM_CONFIG_CACHE /mal/.npm