hoda.fakhar commited on
Commit
79134ab
·
1 Parent(s): 53c0ef5

debug: add progress-bar to tensorflow install to show download progress in logs

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -21,7 +21,7 @@ COPY requirements.txt .
21
  RUN pip install --no-cache-dir --upgrade pip
22
 
23
  # Step 2: install tensorflow-cpu first (largest package, isolated for visibility)
24
- RUN pip install --no-cache-dir --timeout 180 --retries 5 tensorflow-cpu==2.15.1
25
 
26
  # Step 3: install tf-keras (depends on tensorflow)
27
  RUN pip install --no-cache-dir --timeout 60 tf-keras
 
21
  RUN pip install --no-cache-dir --upgrade pip
22
 
23
  # Step 2: install tensorflow-cpu first (largest package, isolated for visibility)
24
+ RUN pip install --no-cache-dir --timeout 180 --retries 5 --progress-bar on tensorflow-cpu==2.15.1
25
 
26
  # Step 3: install tf-keras (depends on tensorflow)
27
  RUN pip install --no-cache-dir --timeout 60 tf-keras