AI-RESEARCHER-2024 commited on
Commit
601a9ff
1 Parent(s): fa23d20

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -7
Dockerfile CHANGED
@@ -33,13 +33,7 @@ RUN mkdir -p $APP_HOME/models && \
33
  wget -O $APP_HOME/models/llama-model.gguf https://huggingface.co/bartowski/Meta-Llama-3.1-8B-Instruct-GGUF/resolve/main/Meta-Llama-3.1-8B-Instruct-IQ2_M.gguf
34
 
35
  # Install Python dependencies
36
- RUN pip install --user --no-cache-dir \
37
- chainlit \
38
- langchain \
39
- chromadb \
40
- sentence-transformers \
41
- llama-cpp-python \
42
- --extra-index-url https://download.pytorch.org/whl/cpu
43
 
44
  # Create necessary directories with correct permissions
45
  RUN mkdir -p $APP_HOME/.chainlit/files && \
 
33
  wget -O $APP_HOME/models/llama-model.gguf https://huggingface.co/bartowski/Meta-Llama-3.1-8B-Instruct-GGUF/resolve/main/Meta-Llama-3.1-8B-Instruct-IQ2_M.gguf
34
 
35
  # Install Python dependencies
36
+ RUN pip install --user --no-cache-dir -r requirements.txt
 
 
 
 
 
 
37
 
38
  # Create necessary directories with correct permissions
39
  RUN mkdir -p $APP_HOME/.chainlit/files && \