bot / actions /Dockerfile.actions
atkiya110's picture
Upload 4 files
2ce0258 verified
raw
history blame contribute delete
346 Bytes
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"]