]> git.madduck.net Git - etc/vim.git/blob - Dockerfile

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

ce08f9d61a771b5d32539ce05619c8ec3060360d
[etc/vim.git] / Dockerfile
1 FROM testbed/vim:latest
2
3 RUN apk --no-cache add gtk+2.0-dev libx11-dev libxt-dev mcookie xauth xvfb
4 RUN install_vim -tag master --with-features=normal \
5   --disable-channel --disable-netbeans --disable-xim \
6   --enable-gui=gtk2 --with-x -build
7 RUN ln -s /vim-build/bin/vim-master /usr/bin/gvim
8 RUN gvim --version
9
10 WORKDIR /vim-python-pep8-indent
11
12 ADD Gemfile .
13 RUN apk --no-cache add coreutils ruby-bundler
14 RUN bundle install
15
16 ADD indent ./indent
17 ADD spec ./spec
18
19 ENTRYPOINT ["rspec", "spec"]