Merge pull request #333 from LispLY/objc-fix-conj-meta
[jackhill/mal.git] / haxe / Dockerfile
1 FROM ubuntu:18.04
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 ###
25 # Node
26
27 # For building node modules
28 RUN apt-get -y install g++
29
30 # Add nodesource apt repo config for 10.x stable
31 RUN apt-get -y install gnupg
32 RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
33
34 # Install nodejs
35 RUN apt-get -y install nodejs
36
37 ENV NPM_CONFIG_CACHE /mal/.npm
38
39
40 ###
41 # Haxe
42
43 RUN apt-get -y install software-properties-common && \
44 add-apt-repository -y ppa:haxe/releases && \
45 apt-get -y update
46
47 ENV HOME /
48 RUN apt-get install -y haxe && \
49 mkdir /haxelib && haxelib setup /haxelib
50
51 # Install support for C++ compilation
52 RUN haxelib install hxcpp
53