mirror of
https://github.com/kanaka/mal.git
synced 2024-11-11 00:52:44 +03:00
2c0c033bfc
- Fix Nim IOError handling issue introduced by update.
35 lines
996 B
Docker
35 lines
996 B
Docker
FROM ubuntu:vivid
|
|
MAINTAINER Joel Martin <github@martintribe.org>
|
|
|
|
##########################################################
|
|
# General requirements for testing or common across many
|
|
# implementations
|
|
##########################################################
|
|
|
|
RUN apt-get -y update
|
|
|
|
# Required for running tests
|
|
RUN apt-get -y install make python
|
|
|
|
# Some typical implementation and test requirements
|
|
RUN apt-get -y install curl libreadline-dev libedit-dev
|
|
|
|
RUN mkdir -p /mal
|
|
WORKDIR /mal
|
|
|
|
##########################################################
|
|
# Specific implementation requirements
|
|
##########################################################
|
|
|
|
# Java and Zip
|
|
RUN apt-get -y install openjdk-7-jdk
|
|
RUN apt-get -y install unzip
|
|
|
|
RUN curl -O -J -L https://github.com/JetBrains/kotlin/releases/download/v1.0.6/kotlin-compiler-1.0.6.zip
|
|
|
|
RUN mkdir -p /kotlin-compiler
|
|
RUN unzip kotlin-compiler-1.0.6.zip -d /kotlin-compiler
|
|
|
|
ENV KOTLIN_HOME /kotlin-compiler/kotlinc
|
|
ENV PATH $KOTLIN_HOME/bin:$PATH
|