Skip to content

Commit

Permalink
corrected syntax in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel W. King committed Sep 21, 2020
1 parent 3265498 commit 7f3aea9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docker/pensando/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ RUN apt-get update && \
apt-get install git -y && \
apt-get install python-pip -y && \
apt-get install python-dev -y && \
apt-get install python3-pip && \
apt-get install python3-pip -y && \
pip install requests && \
pip install pyopenssl && \
pip install pydevd && \
pip install tetpyclient && \
pip install ansible-lint && \
pip3 install flake8
pip3 install flake8 && \
apt-add-repository --yes --update ppa:ansible/ansible && \
apt-get install ansible -y

Expand Down

0 comments on commit 7f3aea9

Please sign in to comment.