yukee1992 commited on
Commit
c730ae1
·
verified ·
1 Parent(s): bb35677

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -22,9 +22,8 @@ RUN apt-get update && apt-get install -y \
22
  # Copy requirements first for better caching
23
  COPY requirements.txt .
24
 
25
- # Install Python dependencies in the correct order
26
- RUN pip install --no-cache-dir numpy==1.22.0 && \
27
- pip install --no-cache-dir -r requirements.txt
28
 
29
  # Copy application code
30
  COPY app.py .
 
22
  # Copy requirements first for better caching
23
  COPY requirements.txt .
24
 
25
+ # Install Python dependencies
26
+ RUN pip install --no-cache-dir -r requirements.txt
 
27
 
28
  # Copy application code
29
  COPY app.py .