Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -33,6 +33,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
33 |
# Install Python packages in multiple steps to handle dependencies better
|
34 |
RUN pip install --no-cache-dir --upgrade pip && \
|
35 |
pip install --no-cache-dir 'numpy==1.23.5' && \
|
|
|
36 |
pip install --no-cache-dir einops>=0.6.1 && \
|
37 |
pip install --no-cache-dir -r /code/requirements.txt
|
38 |
|
|
|
33 |
# Install Python packages in multiple steps to handle dependencies better
|
34 |
RUN pip install --no-cache-dir --upgrade pip && \
|
35 |
pip install --no-cache-dir 'numpy==1.23.5' && \
|
36 |
+
pip install --no-cache-dir 'faiss-cpu==1.7.3' && \
|
37 |
pip install --no-cache-dir einops>=0.6.1 && \
|
38 |
pip install --no-cache-dir -r /code/requirements.txt
|
39 |
|