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
commit 044c403a1f31c7b7d5fc418be18f4e8f94a5190f Author: rileykk <[email protected]> AuthorDate: Fri Jan 20 14:59:10 2023 -0800 Added note addressing critical SDAP-434 issue --- docs/build.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/build.rst b/docs/build.rst index 43a8f22..06fd23a 100644 --- a/docs/build.rst +++ b/docs/build.rst @@ -128,6 +128,12 @@ 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 and 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 ====
