Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -21,6 +21,9 @@ RUN chmod 777 .
|
|
21 |
COPY ./requirements.txt /code/requirements.txt
|
22 |
RUN pip install --upgrade pip
|
23 |
RUN pip install --upgrade setuptools
|
|
|
|
|
|
|
24 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
25 |
|
26 |
RUN useradd -m -u 1000 user
|
|
|
21 |
COPY ./requirements.txt /code/requirements.txt
|
22 |
RUN pip install --upgrade pip
|
23 |
RUN pip install --upgrade setuptools
|
24 |
+
RUN pip install llama-cpp-python
|
25 |
+
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
26 |
+
|
27 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
28 |
|
29 |
RUN useradd -m -u 1000 user
|