From 7f3aea9efbdd66cbf2cfd829391e81430fafae49 Mon Sep 17 00:00:00 2001 From: "Joel W. King" Date: Mon, 21 Sep 2020 11:50:44 -0400 Subject: [PATCH] corrected syntax in Dockerfile --- docs/docker/pensando/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docker/pensando/Dockerfile b/docs/docker/pensando/Dockerfile index 436b01a..08a1fba 100644 --- a/docs/docker/pensando/Dockerfile +++ b/docs/docker/pensando/Dockerfile @@ -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