From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Thu, 24 Oct 2019 12:01:57 -0400 Subject: [U-Boot] [PATCH 2/2] Dockerfile: Add python3-pip In-Reply-To: <20191024160157.29184-1-trini@konsulko.com> References: <20191024155928.28616-1-trini@konsulko.com> <20191024160157.29184-1-trini@konsulko.com> Message-ID: <20191024160157.29184-2-trini@konsulko.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de In order to be able to use pip within a virtualenv of python3 we need to have python3-pip installed as well. Signed-off-by: Tom Rini --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6eb47b9b5016..43e739601741 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,6 +67,7 @@ RUN apt-get update && apt-get install -y \ python-dev \ python-pip \ python-virtualenv \ + python3-pip \ python3-sphinx \ rpm2cpio \ sloccount \ -- 2.17.1