python: remove extraneous macroexpand call.
[jackhill/mal.git] / dart / Dockerfile
1 FROM ubuntu:vivid
2 MAINTAINER Harry Terkelsen <harry@terkelsen.io>
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 RUN apt-get -y install apt-transport-https
25 RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
26 RUN curl https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list
27 RUN apt-get -y update
28
29 RUN apt-get -y install dart