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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -24,8 +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
- 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
 
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
+ RUN git config --global user.email "amatenkov@ntr.ai"
28
+ RUN git config --global user.name "Andrew Matenkov"
29
 
30
  # Run the server
31
  CMD python3 -m app