RASA docker image existed with 132

Hi , Tried to install Rasa using docker; Base project not created. Container is errored out with code 132. Kindly suggest. Image created successfully for project is not able to run.

Used below command: docker run -v $(pwd):/app rasa/rasa:1.10.1-full init --no-prompt

Error 132 probably means that the CPU doesn’t support AVX which is required by tensorflow. I ran into this problem a while ago, see here. There is no practical fix for this except for moving to a different hardware platform (that does have AVX support).

@flythe, i checked cpuinfo. it does not have AVX support. So is creating custom image the only solution?

@flythe, Any idea if we can use any other docker image?

The only solution is to rebuild the rasa container with a custom build of tensorflow that doesn’t use AVX. I would only recommend doing this if you have absolutely no other solution (i.e. moving to a different platform). Just the process of building tensorflow can take up to a day if you know what you are doing.

My solution was to contact all the VPS hosters in my country to ask if they had AVX support and we moved to the only one that did (it is apparently quite rare to support this in a VPS environment).