Dockerfile (Got from rasa1.X doc , tested to built my own docker image same problem)
# Extend the official Rasa SDK image
FROM rasa/rasa-sdk:1.10.3
# Use subdirectory as working directory
WORKDIR /app
# Change back to root user to install dependencies
USER root
# Copy actions folder to working directory
COPY ./actions /app/actions
# By best practices, don't run the code with root user
USER 1001
@BELIEVEIT did you managed to install all the dependencies and software for action server using requrenments.txt? Why only these versions why not latest?
docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 620fb044edb2 ed129378bae7 "rasa run --cors * -…" 2 minutes ago Up 2 minutes 0.0.0.0:5005->5005/tcp, :::5005->5005/tcp rasa_forum_rasa_1 69640e57d142 9681c32b59b0 "./entrypoint.sh sta…" 2 minutes ago Up 2 minutes 0.0.0.0:5055->5055/tcp, :::5055->5055/tcp rasa_forum_action-server_1
Can anyone help me on this , i still facing problem of “standard_init_linux.go:228: exec user process caused: exec format error” is it due to the architecture that is was using on raspberry pi which is ARMv7 ?