aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.python
diff options
context:
space:
mode:
authorCody Hiar <cody.hiar@investopedia.com>2016-09-02 14:34:31 -0600
committerCody Hiar <cody.hiar@investopedia.com>2016-09-02 17:12:04 -0600
commite91b54d9ec6c1287be2519904a9f39beb3485846 (patch)
tree56960c59f344b358b0e9b26d5ad76c67b0f189ea /Dockerfile.python
parent7cfc1e88685fa4973d3e0020312c00615ef191a9 (diff)
Moved neovim to alpine linux to save time on compiling
Diffstat (limited to 'Dockerfile.python')
-rw-r--r--Dockerfile.python46
1 files changed, 0 insertions, 46 deletions
diff --git a/Dockerfile.python b/Dockerfile.python
deleted file mode 100644
index bca59f3..0000000
--- a/Dockerfile.python
+++ /dev/null
@@ -1,46 +0,0 @@
-FROM ubuntu:14.04
-MAINTAINER Cody Hiar <codyfh@gmail.com>
-
-# Set the working directory
-WORKDIR /src
-
-# 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 \
- git \
- ack-grep \
- python-dev \
- python-pip \
- python3-dev \
- python3-pip
-
-# Set git stuff
-RUN git config --global user.email "codyfh@gmail.com"
-RUN git config --global user.name "Cody Hiar"
-
-# 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 flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257
-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