| FROM rasa/rasa-sdk:3.6.0 | |
| WORKDIR /app | |
| # Copy requirements and actions | |
| COPY requirements.txt requirements.txt | |
| COPY actions.py /app/actions.py | |
| # Install custom dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Set permissions | |
| USER 1001 | |
| EXPOSE 5055 | |
| # Start action server | |
| CMD ["start", "--actions", "actions"] | |