Found one possible cause: the custom rasa image file is not being created correctly… updated the docker file but still facing the same issue:
FROM rasa/rasa:2.1.3-full
USER root
COPY ./customComp /customComp/
ENV PYTHONPATH=$PYTHONPATH:/customComp/
RUN pip install --trusted-host pypi.python.org fuzzywuzzy==0.18.0 rapidfuzz==0.13.4
# Switch back to non-root to run code
USER 1001
project structure is as follows:
was following this Rasa X Docker ModuleNotFoundError with a Custom Component - Rasa X - Rasa Community Forum @mloubser any idea on how resolve this?