Update dockerfile
This commit is contained in:
parent
ac2b6af97e
commit
313b7d5423
1 changed files with 7 additions and 0 deletions
|
|
@ -21,6 +21,13 @@ ENV PATH="/root/.cargo/bin:${PATH}"
|
|||
RUN pip install --user --no-cache-dir -r requirements.txt
|
||||
RUN pip install --user --no-cache-dir -r lightrag/api/requirements.txt
|
||||
|
||||
# Install depndencies for default storage
|
||||
RUN pip install --user --no-cache-dir nano-vectordb networkx
|
||||
# Install depndencies for default LLM
|
||||
RUN pip install --user --no-cache-dir openai ollama tiktoken
|
||||
# Install depndencies for default document loader
|
||||
RUN pip install --user --no-cache-dir pypdf2 python-docx python-pptx openpyxl
|
||||
|
||||
# Final stage
|
||||
FROM python:3.11-slim
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue