muryshev commited on
Commit
d73efc0
1 Parent(s): b698cda

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -24,6 +24,8 @@ RUN python3 -m pip install --no-cache-dir --upgrade pip pytest cmake scikit-buil
24
  # Install llama-cpp-python (build with cuda)
25
  RUN CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install --no-cache-dir llama-cpp-python
26
 
 
 
27
 
28
  # Run the server
29
  CMD python3 -m app
 
24
  # Install llama-cpp-python (build with cuda)
25
  RUN CMAKE_ARGS="-DLLAMA_CUBLAS=on" pip install --no-cache-dir llama-cpp-python
26
 
27
+ CMD git config --global user.email "amatenkov@ntr.ai"
28
+ CMD git config --global user.name "Andrew Matenkov"
29
 
30
  # Run the server
31
  CMD python3 -m app