Skip to content
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.

Commit

Permalink
Correctly install flake8 on Python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Oct 8, 2016
1 parent fd707f9 commit b271acb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN apt-get update \
git \
libssl-dev \
libre2-dev \
&& pip install -U pip setuptools wheel \
&& pip2 install -U pip setuptools wheel \
&& pip3 install -U pip setuptools wheel cython \
&& pip3 install https://github.com/andreasvc/pyre2/archive/master.zip \
&& git config --global user.email "badwolf@localhost" \
Expand All @@ -36,7 +36,7 @@ RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - \
eslint-plugin-react eslint-plugin-react-native \
babel-eslint

RUN pip install -U flake8 pep8 pep8-naming pylint flake8-import-order && \
RUN pip2 install -U flake8 pep8 pep8-naming pylint flake8-import-order && \
pip3 install -U badwolf \
&& rm -rf /var/lib/apt/list/* /tmp/* /var/tmp/*

Expand Down

0 comments on commit b271acb

Please sign in to comment.