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