Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -14,6 +14,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 14 |
# Copy requirements (do NOT include llama-cpp-python here; it's installed separately)
|
| 15 |
COPY requirements.txt /app/requirements.txt
|
| 16 |
|
|
|
|
|
|
|
| 17 |
# Download the prebuilt wheel and install it, then install other Python deps
|
| 18 |
RUN mkdir -p /wheels && \
|
| 19 |
curl -L -o /wheels/llama_cpp_python-0.2.75+cpubasic-cp311-cp311-linux_x86_64.whl \
|
|
|
|
| 14 |
# Copy requirements (do NOT include llama-cpp-python here; it's installed separately)
|
| 15 |
COPY requirements.txt /app/requirements.txt
|
| 16 |
|
| 17 |
+
RUN apt-get update && apt-get install -y libgomp1
|
| 18 |
+
|
| 19 |
# Download the prebuilt wheel and install it, then install other Python deps
|
| 20 |
RUN mkdir -p /wheels && \
|
| 21 |
curl -L -o /wheels/llama_cpp_python-0.2.75+cpubasic-cp311-cp311-linux_x86_64.whl \
|