allekssandr commited on
Commit
5690482
·
verified ·
1 Parent(s): b89aa55

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -9,8 +9,8 @@ RUN apt-get update && apt-get install -y \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  # Устанавливаем зависимости Python
12
- RUN pip install --no-cache-dir \
13
- CMAKE_ARGS="-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
14
 
15
  # Создаем рабочую директорию
16
  WORKDIR /app
 
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
  # Устанавливаем зависимости Python
12
+ RUN python install --no-cache-dir \
13
+ CMAKE_ARGS="-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" python install llama-cpp-python
14
 
15
  # Создаем рабочую директорию
16
  WORKDIR /app