diff options
author | Cody Hiar <codyfh@gmail.com> | 2018-12-17 22:19:03 +0000 |
---|---|---|
committer | Cody Hiar <codyfh@gmail.com> | 2018-12-17 22:19:03 +0000 |
commit | 0d48964a2ff35d2ce8af9f4f78d6a656ff49af17 (patch) | |
tree | 35cebea450e7a20745cd544f4db9ff7d94641f3f /Dockerfile | |
parent | 3c3a82f38a4de58b8fe2ce0d6d2d606c8a156df5 (diff) |
Updating python setup
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -61,11 +61,11 @@ RUN wget https://releases.hashicorp.com/terraform/0.11.8/terraform_0.11.8_linux_ ######################################## # Install python linting and neovim plugin -RUN pip install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes -RUN pip install pep8-naming pep257 isort -RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes -RUN pip3 install pep8-naming pep257 isort mypy ansible-lint flake8-bugbear -RUN pip3 install flake8-commas flake8-comprehensions +ADD py2_requirements.txt /opt/py2_requirements.txt +RUN cd /opt && pip2 install -r py2_requirements.txt + +ADD py3_requirements.txt /opt/py3_requirements.txt +RUN cd /opt && pip3 install -r py3_requirements.txt ######################################## |