Hello,
I am trying to train rasa inside a Dockerfile. Therefore, I created the following Dockerfile:
FROM rasa/rasa:2.0.3-full
RUN rasa train --config config.yml --domain domain.yml --data data --out models
ENTRYPOINT ["rasa"]
I run this file inside /rasa where all these files are stored.
I use the following command:
docker image build -t chat-bot:1.0 .
However, I always get the following error:
The path './config.yml' does not exist. Please make sure to use the default location ('config.yml') or specify it with '--config'.
Did anyone else try this before? I was not able to find documentation about creating a Dockerfile with Rasa. Thanks for your help!