CooLLaMACEO commited on
Commit
caa3198
·
verified ·
1 Parent(s): 01d6377

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -7,8 +7,8 @@ RUN apt-get update && apt-get install -y \
7
  wget \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
- # Download the specific GGUF file you requested
11
- RUN wget -O model.gguf https://huggingface.co/maddes8cht/mosaicml-mpt-7b-chat-gguf/resolve/main/mosaicml-mpt-7b-chat-Q2_K.gguf
12
 
13
  # Install modern llama-cpp and web server
14
  RUN pip install --no-cache-dir llama-cpp-python fastapi uvicorn
 
7
  wget \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
+ # The -q flag makes it quiet so the logs don't hit the 2MB limit
11
+ RUN wget -q -O model.gguf https://huggingface.co/maddes8cht/mosaicml-mpt-7b-chat-gguf/resolve/main/mosaicml-mpt-7b-chat-Q2_K.gguf
12
 
13
  # Install modern llama-cpp and web server
14
  RUN pip install --no-cache-dir llama-cpp-python fastapi uvicorn