You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2021/06/25 22:11:47 UTC

[airavata-django-portal] branch develop updated: AIRAVATA-3420 Adding g++ to docker image for grpc pip install

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2310586  AIRAVATA-3420 Adding g++ to docker image for grpc pip install
2310586 is described below

commit 23105869211cb08da6ea4ca9d4c730e4d21d9b0a
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Fri Jun 25 18:11:31 2021 -0400

    AIRAVATA-3420 Adding g++ to docker image for grpc pip install
---
 Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 81f73c7..3959cab 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -72,8 +72,8 @@ WORKDIR /code
 COPY requirements.txt requirements-mysql.txt ./
 COPY setup.* ./
 COPY README.md .
-RUN apt-get update && apt-get install -y git gcc zlib1g-dev libjpeg-dev default-libmysqlclient-dev
-RUN pip install --upgrade pip --no-cache
+RUN apt-get update && apt-get install -y git gcc g++ zlib1g-dev libjpeg-dev default-libmysqlclient-dev
+RUN pip install --upgrade pip setuptools wheel --no-cache
 RUN pip install -r requirements.txt --no-cache
 RUN pip install -r requirements-mysql.txt --no-cache