Action server (sdk ) Instalation Problem

Hi everyone,

We are implementing Rasa within Docker (2 containers in total) and Kubernets (Microk8s), we have installed Rasa Core successfully but when we try to install Custom Action Server on its own Docker, we face the following message:

We have followed the following steps to install it:

Extend the official Rasa SDK image FROM rasa/rasa-sdk:2.0.0a1

Use subdirectory as working directory WORKDIR /app

Copy any additional custom requirements, if necessary (uncomment next line)

COPY actions/requirements-actions.txt ./

Change back to root user to install dependencies USER root

Install extra requirements for actions code, if necessary (uncomment next line)

RUN pip install -r requirements-actions.txt

Copy actions folder to working directory COPY ./actions /app/actions

By best practices, don’t run the code with root user USER 1001

anyone knows how to fix this issue? If you need more information please let us know…

Hi @javier0movigoo. Just to double check - by Rasa Core you mean Rasa X? Also, when installing it, which approach were you using - custom installation or one line deploy script?