diff options
author | Cody Hiar <cody.hiar@investopedia.com> | 2016-11-04 11:43:40 -0600 |
---|---|---|
committer | Cody Hiar <cody.hiar@investopedia.com> | 2016-11-04 11:43:40 -0600 |
commit | 4df2bffd8baabf37a0e6fe2b0399df543f3a09ab (patch) | |
tree | dfe2c0fe048c6cdb4e485ad1642a42d37ba2364d | |
parent | e07410c71b3bbb73a296ddf22c52657f74609515 (diff) |
Use python 3 only, don't need 2
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -19,7 +19,6 @@ RUN apk add --no-cache \ curl \ git \ ack \ - python-dev \ python3-dev \ nodejs \ neovim \ @@ -32,7 +31,6 @@ RUN git config --global user.email "codyfh@gmail.com" RUN git config --global user.name "Cody Hiar" # Install pip for both versions of python -RUN python -m ensurepip RUN python3 -m ensurepip # Download composer and move it to new location @@ -55,7 +53,6 @@ RUN phpcs --config-set installed_paths /root/.composer/vendor/escapestudios/symf ADD PEARish.xml /root/PEARish.xml # Install python linting and neovim plugin -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 |