aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile.python
blob: bca59f327dbe50eaa14ea969033bae4caeeac55b (plain)
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
44
45
46
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