Update Dockerfile
Browse files- 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 |
-
|
| 28 |
-
|
| 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 "[email protected]"
|
| 28 |
+
RUN git config --global user.name "Andrew Matenkov"
|
| 29 |
|
| 30 |
# Run the server
|
| 31 |
CMD python3 -m app
|