aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2018-03-21 11:28:19 -0600
committerCody Hiar <codyfh@gmail.com>2018-03-21 11:28:19 -0600
commitc4e32712d5c9826a9a3d9a91ea974b276bb9911a (patch)
tree285adf648084d8930cb19d83e9f56c39aad6152e
parent19d088005a15cea28dffc4ef0694cc759e0fd27e (diff)
Adding flak8 plugins
-rw-r--r--Dockerfile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 3931797..9284a23 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -27,6 +27,9 @@ RUN apt-get update && apt-get install -y \
ranger \
ack-grep \
sqlite3 \
+ # For python crypto libraries
+ libssl-dev \
+ libffi-dev \
locales
# Generally a good idea to have these, extensions sometimes need them
@@ -71,8 +74,11 @@ ADD PEARish.xml /root/PEARish.xml
########################################
# Install python linting and neovim plugin
-RUN pip install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes pep8-naming pep257 isort
-RUN pip3 install neovim jedi flake8 flake8-docstrings flake8-isort flake8-quotes pep8-naming pep257 isort mypy ansible-lint
+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
########################################