vimscript: Remove calls to ObjValue
[jackhill/mal.git] / vimscript / Dockerfile
CommitLineData
50a964ce
DM
1FROM ubuntu:vivid
2MAINTAINER Joel Martin <github@martintribe.org>
3
4##########################################################
5# General requirements for testing or common across many
6# implementations
7##########################################################
8
9RUN apt-get -y update
10
11# Required for running tests
12RUN apt-get -y install make python
13
14# Some typical implementation and test requirements
15RUN apt-get -y install curl libreadline-dev libedit-dev
16
17RUN mkdir -p /mal
18WORKDIR /mal
19
20##########################################################
21# Specific implementation requirements
22##########################################################
23
c9cf76dc
JM
24# To build the readline plugin
25RUN apt-get -y install g++
26
549763e9
DM
27# Vim 8.0
28RUN apt-get -y install bzip2
29RUN cd /tmp && curl -O ftp://ftp.vim.org/pub/vim/unix/vim-8.0.tar.bz2 \
30 && tar xjf /tmp/vim-8.0.tar.bz2 \
31 && cd vim80 && make && make install \
32 && cd /tmp && rm -r /tmp/vim-8.0.tar.bz2 /tmp/vim80
33
34ENV HOME /mal