Implement step 8
[jackhill/mal.git] / coffee / Dockerfile
1 FROM ubuntu:vivid
2 MAINTAINER Joel Martin <github@martintribe.org>
3
4 ##########################################################
5 # General requirements for testing or common across many
6 # implementations
7 ##########################################################
8
9 RUN apt-get -y update
10
11 # Required for running tests
12 RUN apt-get -y install make python
13
14 # Some typical implementation and test requirements
15 RUN apt-get -y install curl libreadline-dev libedit-dev
16
17 RUN mkdir -p /mal
18 WORKDIR /mal
19
20 ##########################################################
21 # Specific implementation requirements
22 ##########################################################
23
24 # For building node modules
25 RUN apt-get -y install g++
26
27 # Add nodesource apt repo config for 0.12 stable
28 RUN curl -sL https://deb.nodesource.com/setup_0.12 | bash -
29
30 # Install nodejs
31 RUN apt-get -y install nodejs
32
33 # Link common name
34 RUN ln -sf nodejs /usr/bin/node
35
36 ENV NPM_CONFIG_CACHE /mal/.npm
37
38 # CoffeeScript specific
39 RUN npm install -g coffee-script
40 RUN touch /.coffee_history && chmod go+w /.coffee_history
41