Spaces:
Runtime error
Runtime error
updated
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -18,6 +18,8 @@ RUN apt-get update && apt-get install -y \
|
|
18 |
COPY ./app ./app
|
19 |
COPY requirements.txt .
|
20 |
|
|
|
|
|
21 |
# Install Python dependencies
|
22 |
RUN pip install --upgrade pip && pip install -r requirements.txt
|
23 |
|
|
|
18 |
COPY ./app ./app
|
19 |
COPY requirements.txt .
|
20 |
|
21 |
+
RUN pip uninstall -y pinecone-plugin-inference || true
|
22 |
+
|
23 |
# Install Python dependencies
|
24 |
RUN pip install --upgrade pip && pip install -r requirements.txt
|
25 |
|