Running RASA on the RPi 4 with Raspbian Buster!

It feels like I’m close to having the RasaPi docker image but it’s not quite there and I haven’t had a chance to get back to it the past week. I’m posting my Dockerfile on gist. Hoping someone can give it a try.

I installed Docker on my Pi by adding the following line to /etc/apt/sources.list

https://apt.dockerproject.org/repo/ raspbian-RELEASE main

Then run these commands:

sudo apt-get install -y docker.io
sudo apt install python3-pip
sudo pip3 install docker-compose

Then run the build:

sudo docker build .
1 Like