BA-Chatbot/chatbot/Dockerfile

14 lines
411 B
Docker
Raw Normal View History

2023-11-15 14:28:48 +01:00
# Extend the official Rasa SDK image
FROM rasa/rasa-sdk:3.6.2
# Use subdirectory as working directory
WORKDIR /app
COPY actions/requirements-actions.txt ./
# Change back to root user to install dependencies
USER root
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 root