-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ensure 'python' commands uses python3 by adding python-is-python3
- Loading branch information
1 parent
1f7fe3a
commit 7867c2b
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ LABEL maintainer="Hive Solutions <[email protected]>" | |
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update &&\ | ||
apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 &&\ | ||
apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 python-is-python3 &&\ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* &&\ | ||
wget "https://bootstrap.pypa.io/get-pip.py" &&\ | ||
python get-pip.py --no-cache-dir --no-compile &&\ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ LABEL maintainer="Hive Solutions <[email protected]>" | |
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt-get update &&\ | ||
apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 &&\ | ||
apt-get install -y -q --no-install-recommends sudo bash wget git openssl unzip ca-certificates dirmngr apt-transport-https python3 python-is-python3 &&\ | ||
apt-get clean && rm -rf /var/lib/apt/lists/* &&\ | ||
wget "https://bootstrap.pypa.io/get-pip.py" &&\ | ||
python get-pip.py --no-cache-dir --no-compile &&\ | ||
|