Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -32,7 +32,8 @@ COPY ./requirements.txt /code/requirements.txt
|
|
32 |
|
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
|
|
|
36 |
pip install --no-cache-dir -r /code/requirements.txt
|
37 |
|
38 |
# Copy the rest of the application
|
|
|
32 |
|
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 |
|
39 |
# Copy the rest of the application
|