Spaces:
Sleeping
Sleeping
# Use Python 3.9 | |
FROM python:3.9 | |
# Create a new user | |
RUN useradd -m -u 1000 user | |
USER user | |
ENV PATH="/home/user/.local/bin:$PATH" | |
# Set the working directory | |
WORKDIR /app | |
# Copy and install dependencies | |
COPY --chown=user ./requirements.txt requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
# Copy all project files | |
COPY --chown=user . /app | |
# Run Rasa server | |
CMD ["rasa", "run", "--enable-api", "--port", "7860", "--cors", "*"] | |