Skip to content

Instantly share code, notes, and snippets.

@marcosnils
Last active October 19, 2016 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcosnils/82f40bc82be290a297c5925e3786f1ea to your computer and use it in GitHub Desktop.
Save marcosnils/82f40bc82be290a297c5925e3786f1ea to your computer and use it in GitHub Desktop.
FROM ubuntu:wily
RUN apt-get update && apt-get build-dep -y vim && apt-get install -y git
RUN apt-get install -y python3-dev
RUN git clone --depth=1 -b v8.0.0045 https://github.com/vim/vim.git \
&& cd vim \
&& ./configure --with-features=huge --enable-gui=gtk3 --with-x --enable-gtk3-check --enable-athena-check --enable-fontset --with-python3-config-dir=$(python3-config --configdir) --enable-pythoninterp --enable-python3interp --enable-rubyinterp \
&& make && mkdir /pkg && DESTDIR=/pkg make install
#Copy the underlying /pkg/* content into your machine and you're good to go!.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment