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/03/06 19:42:15 UTC

[incubator-sdap-nexus] branch SDAP-434 updated: Removed now unneeded note from build guide

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

rkk pushed a commit to branch SDAP-434
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


The following commit(s) were added to refs/heads/SDAP-434 by this push:
     new 3d76a55  Removed now unneeded note from build guide
3d76a55 is described below

commit 3d76a55012e284473cf63410dc81e8feb8634627
Author: rileykk <ri...@jpl.nasa.gov>
AuthorDate: Mon Mar 6 11:42:06 2023 -0800

    Removed now unneeded note from build guide
---
 docs/build.rst | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/docs/build.rst b/docs/build.rst
index 9964955..43a8f22 100644
--- a/docs/build.rst
+++ b/docs/build.rst
@@ -128,12 +128,6 @@ Now we can build the webapp with:
 
   docker build . -f docker/nexus-webapp/Dockerfile -t sdap-local/sdap-nexus-webapp:${NEXUS_VERSION}
 
-.. note::
-
-  The build may fail with a message like ``ModuleNotFoundError: No module named 'tqdm'``, this is an issue `we're aware of <https://issues.apache.org/jira/projects/SDAP/issues/SDAP-434>`_.
-  The issue can be fixed by editing the file ``${NEXUS_DIR}/docker/nexus-webapp/Dockerfile``.
-  Change the line ``RUN conda install python=3.8`` (line 67) to ``RUN conda install python=3.8 tqdm`` and the build should succeed (maybe also include the flag ``--no-cache`` in the ``docker build`` command when retrying the build).
-
 Verify Successful Build
 ====