LightRAG/Dockerfile

50 lines
1.2 KiB
Docker
Raw Normal View History

2025-01-16 22:28:28 +01:00
# Build stage
FROM python:3.11-slim AS builder
2025-01-16 22:28:28 +01:00
WORKDIR /app
# Install Rust and required build dependencies
RUN apt-get update && apt-get install -y \
curl \
build-essential \
pkg-config \
&& rm -rf /var/lib/apt/lists/* \
&& curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
&& . $HOME/.cargo/env
2025-01-16 22:28:28 +01:00
# Copy only requirements files first to leverage Docker cache
COPY requirements.txt .
COPY lightrag/api/requirements.txt ./lightrag/api/
# Install dependencies
ENV PATH="/root/.cargo/bin:${PATH}"
2025-01-16 22:28:28 +01:00
RUN pip install --user --no-cache-dir -r requirements.txt
RUN pip install --user --no-cache-dir -r lightrag/api/requirements.txt
# Final stage
FROM python:3.11-slim
WORKDIR /app
# Copy only necessary files from builder
COPY --from=builder /root/.local /root/.local
2025-01-17 02:31:23 +01:00
COPY ./lightrag ./lightrag
COPY setup.py .
2025-01-16 22:28:28 +01:00
2025-01-17 02:31:23 +01:00
RUN pip install .
2025-01-16 22:28:28 +01:00
# Make sure scripts in .local are usable
ENV PATH=/root/.local/bin:$PATH
# Create necessary directories
RUN mkdir -p /app/data/rag_storage /app/data/inputs
# Docker data directories
ENV WORKING_DIR=/app/data/rag_storage
ENV INPUT_DIR=/app/data/inputs
2025-01-16 22:28:28 +01:00
# Expose the default port
EXPOSE 9621
# Set entrypoint
ENTRYPOINT ["python", "-m", "lightrag.api.lightrag_server"]