-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
43 lines (38 loc) · 753 Bytes
/
Dockerfile
File metadata and controls
43 lines (38 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
FROM ubuntu
MAINTAINER Yann Thomas-Gérard <inside@gmail.com>
WORKDIR /root
RUN apt-get -y update && apt-get install -y \
ctags \
curl \
gcc \
git \
liblua5.2-dev \
make \
php5-cli \
python \
python-dev \
ruby \
ruby-dev \
libx11-dev \
libxtst-dev \
libxt-dev \
libsm-dev \
libxpm-dev \
silversearcher-ag \
tmux \
tree \
wget \
zsh
RUN git clone git@github.com:vim/vim.git && \
cd vim/src && \
./configure \
--disable-gui \
--enable-luainterp \
--enable-pythoninterp \
--enable-rubyinterp \
--with-features=big \
--with-compiledby=inside \
--without-x && \
make && \
make install
CMD ["zsh"]