aiagent_playground/openwebui/pipelines/deepresearch/Dockerfile
2025-02-12 21:39:36 +00:00

14 lines
No EOL
332 B
Docker

# Use the existing Pipelines image as the base image
FROM ghcr.io/open-webui/pipelines:main
# Set the working directory
WORKDIR /app
# Copy the scripts into the folder
COPY scripts ./scripts
# Copy the requirements file into the container
COPY requirements.txt .
# Install Python dependencies
RUN pip install -r requirements.txt