jerukperas commited on
Commit
5df3b0b
1 Parent(s): 01a9f90

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -33,8 +33,9 @@ ENV BLIS_NUM_THREADS=14
33
  WORKDIR /app
34
 
35
  RUN pip install --no-cache-dir --upgrade pip
 
36
  RUN CMAKE_ARGS="-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=FLAME" \
37
- pip install llama-cpp-python
38
 
39
  COPY --chown=user ./app.py /app/app.py
40
  CMD ["python", "app.py"]
 
33
  WORKDIR /app
34
 
35
  RUN pip install --no-cache-dir --upgrade pip
36
+ RUN pip install --no-cache-dir --upgrade gradio
37
  RUN CMAKE_ARGS="-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=FLAME" \
38
+ pip install --no-cache-dir --upgrade llama-cpp-python
39
 
40
  COPY --chown=user ./app.py /app/app.py
41
  CMD ["python", "app.py"]