Error during rasa run

Hey all,

I keep getting this error with my deployment

rasa run: error: argument {actions}: invalid choice: ‘0.0.0.0’ (choose from ‘actions’)

my Dockerfile has this

FROM python:3.10-slim

WORKDIR /app COPY . /app

Install system dependencies

RUN apt-get update && apt-get install -y
build-essential
libffi-dev
libssl-dev
libpq-dev
git
curl
&& apt-get clean
&& rm -rf /var/lib/apt/lists/*

Upgrade pip & install Python deps

RUN pip install --upgrade pip setuptools wheel RUN pip install rasa==3.6.21 rasa-sdk RUN pip install -r requirements.txt

Ensure start script is executable

RUN chmod +x start.sh

EXPOSE 5005

ENTRYPOINT [“./start.sh”]

Where am I going wrong?