You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2023/11/15 20:43:11 UTC

(incubator-sdap-nexus) branch release/1.2.0-no-chardet updated: Added ARG to speedup cassandra-driver pip install

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

rkk pushed a commit to branch release/1.2.0-no-chardet
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


The following commit(s) were added to refs/heads/release/1.2.0-no-chardet by this push:
     new 877a56d  Added ARG to speedup cassandra-driver pip install
877a56d is described below

commit 877a56d9ecebfb83652f7cca44b578c6762012e1
Author: Riley Kuttruff <72...@users.noreply.github.com>
AuthorDate: Wed Nov 15 12:43:08 2023 -0800

    Added ARG to speedup cassandra-driver pip install
---
 docker/nexus-webapp/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/nexus-webapp/Dockerfile b/docker/nexus-webapp/Dockerfile
index 515d6ab..6aaadda 100644
--- a/docker/nexus-webapp/Dockerfile
+++ b/docker/nexus-webapp/Dockerfile
@@ -97,11 +97,11 @@ RUN python3 setup.py install clean && mamba clean -afy
 
 
 WORKDIR /incubator-sdap-nexus/tools/deletebyquery
+ARG CASS_DRIVER_BUILD_CONCURRENCY=8
 RUN pip3 install cassandra-driver==3.20.1
 RUN pip3 install pyspark py4j
 RUN pip3 install -r requirements.txt
 RUN pip3 install cython
-RUN rm requirements.txt
 
 WORKDIR /incubator-sdap-nexus