File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,9 @@ FROM ${BASE_CUDA_RUN_CONTAINER} AS runtime
3030RUN  apt-get update && \
3131    apt-get install -y libcurl4-openssl-dev libgomp1 curl
3232
33+ #  Adds locale pack
34+ RUN  apt-get update && apt-get install -y locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8
35+ 
3336COPY  --from=build /app/build/ggml/src/libggml.so /libggml.so
3437COPY  --from=build /app/build/src/libllama.so /libllama.so
3538COPY  --from=build /app/build/bin/llama-server /llama-server
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ FROM intel/oneapi-basekit:$ONEAPI_VERSION AS runtime
2323RUN  apt-get update && \
2424    apt-get install -y libcurl4-openssl-dev curl
2525
26+ #  Add locale pack
27+ RUN  apt-get update && apt-get install -y locales && locale-gen en_US.UTF-8 && update-locale LANG=en_US.UTF-8
28+ 
2629COPY  --from=build /app/build/bin/llama-server /llama-server
2730
2831ENV  LC_ALL=C.utf8
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments