reordering core.ns
[jackhill/mal.git] / ts / Dockerfile
CommitLineData
c493c4c0 1FROM ubuntu:xenial
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
24RUN apt-get -y install build-essential
25RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
26RUN apt-get -y install nodejs
27RUN ln -sf nodejs /usr/bin/node
28
29ENV NPM_CONFIG_CACHE /mal/.npm