From b2f71768f128f2330882d3f0b39ae078162b5df0 Mon Sep 17 00:00:00 2001 From: Julien Duchesne Date: Wed, 3 Jul 2019 09:00:51 -0400 Subject: [PATCH] fix: Use pip instead of pip3 in both images --- docker/Dockerfile.python-2 | 2 +- docker/Dockerfile.python-3 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile.python-2 b/docker/Dockerfile.python-2 index 6618b510398..03faab413c6 100644 --- a/docker/Dockerfile.python-2 +++ b/docker/Dockerfile.python-2 @@ -6,7 +6,7 @@ RUN mkdir /home/node WORKDIR /home/node # Install Python utilities, node, Snyk CLI -RUN pip3 install pip pipenv virtualenv -U && \ +RUN pip install pip pipenv virtualenv -U && \ apt-get update && \ apt-get install -y curl && \ curl -sL https://deb.nodesource.com/setup_8.x | bash - && \ diff --git a/docker/Dockerfile.python-3 b/docker/Dockerfile.python-3 index 4d0f922dc82..245a5ad4808 100644 --- a/docker/Dockerfile.python-3 +++ b/docker/Dockerfile.python-3 @@ -6,7 +6,7 @@ RUN mkdir /home/node WORKDIR /home/node # Install Python utilities, node, Snyk CLI -RUN pip3 install pip pipenv virtualenv -U && \ +RUN pip install pip pipenv virtualenv -U && \ apt-get update && \ apt-get install -y curl && \ curl -sL https://deb.nodesource.com/setup_8.x | bash - && \