sksameermujahid commited on
Commit
e68a0f5
·
verified ·
1 Parent(s): 5ac6035

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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>=1.25.0 && \
 
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