Skip to content

Commit

Permalink
fix: Use pip instead of pip3 in both images
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Duchesne authored and Anton Drukh committed Jul 6, 2019
1 parent ca6958b commit b2f7176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile.python-2
Expand Up @@ -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 - && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.python-3
Expand Up @@ -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 - && \
Expand Down

0 comments on commit b2f7176

Please sign in to comment.