From ed9ada3dcfbb5e70105480d37dd5c99b7f83d5bb Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Wed, 27 Jul 2016 12:08:38 -0600 Subject: Initial commit of the working files. --- Dockerfile | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..adc0d69 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,38 @@ +FROM ubuntu:14.04 +MAINTAINER Cody Hiar + +# Fix upstart errors +RUN dpkg-divert --local --rename --add /sbin/initctl +RUN ln -sf /bin/true /sbin/initctl + +# This prevents a bunch of errors during build +ENV DEBIAN_FRONTEND noninteractive + +# Avoid ERROR: invoke-rc.d: policy-rc.d denied execution of start. +RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d + +# Install packages +RUN apt-get update && apt-get install -y \ + software-properties-common \ + python-dev \ + python-pip \ + python3-dev \ + git \ + python3-pip + +# Install Neovim +RUN add-apt-repository ppa:neovim-ppa/unstable -y +RUN apt-get update && apt-get install -y \ + neovim + +# Install the neovim python plugins +RUN pip install neovim +RUN pip3 install neovim + +# Download my Neovim Repo +RUN git clone https://github.com/thornycrackers/.nvim.git /root/.config/nvim + +# Install neovim Modules +RUN nvim +PlugInstall +qa +RUN nvim +UpdateRemotePlugins +qa + -- cgit v1.2.3