Change quasiquote algorithm
[jackhill/mal.git] / impls / d / Dockerfile
1 FROM ubuntu:bionic
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 RUN apt-get -y install gcc gdc ldc gpg wget
25
26 RUN wget https://dlang.org/install.sh -q -O install.sh && \
27 bash install.sh -p /usr/local/dlang && \
28 chmod 755 /usr/local/dlang/dmd* && \
29 ln -sf /usr/local/dlang/dmd-*/linux/bin64/dmd /usr/bin/dmd
30
31 ENV HOME /mal