diff options
author | Cody Hiar <cody.hiar@investopedia.com> | 2016-11-09 21:08:01 -0700 |
---|---|---|
committer | Cody Hiar <cody.hiar@investopedia.com> | 2016-11-09 21:08:01 -0700 |
commit | 44b67a6d5c0b4181f0bb1bdb45104611fdd03da3 (patch) | |
tree | 0a4e8887213e9bc899e31af720113a0f476a5b54 | |
parent | b68608c761cc1de438a9453f51f996b2f09e4b32 (diff) |
Adding python 2 back in for deoplete to work properly
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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"] |