aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorCody Hiar <cody.hiar@investopedia.com>2016-11-09 21:08:01 -0700
committerCody Hiar <cody.hiar@investopedia.com>2016-11-09 21:08:01 -0700
commit44b67a6d5c0b4181f0bb1bdb45104611fdd03da3 (patch)
tree0a4e8887213e9bc899e31af720113a0f476a5b54 /Dockerfile
parentb68608c761cc1de438a9453f51f996b2f09e4b32 (diff)
Adding python 2 back in for deoplete to work properly
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 7a6595e..6e25d3e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -16,6 +16,8 @@ RUN apk add --no-cache \
curl \
git \
ack \
+ python \
+ python-dev \
python3 \
python3-dev \
nodejs \
@@ -50,6 +52,8 @@ RUN phpcs --config-set installed_paths /root/.composer/vendor/escapestudios/symf
ADD PEARish.xml /root/PEARish.xml
# Install python linting and neovim plugin
+RUN python -m ensurepip
+RUN pip install neovim jedi flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257
RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-import-order flake8-quotes pep8 pep8-naming pep257
# Install nodejs linting
@@ -87,4 +91,4 @@ RUN infocmp $TERM | sed 's/kbs=^[hH]/kbs=\\177/' > /tmp/$TERM.ti
RUN tic /tmp/$TERM.ti
# Command for the image
-CMD ["/bin/zsh"]
+CMD ["/bin/bash"]