Tomtom84 commited on
Commit
3fee54e
·
verified ·
1 Parent(s): e77779d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -30,7 +30,7 @@ RUN pip install --upgrade pip
30
 
31
  # Install requirements
32
  COPY --chown=user requirements.txt .
33
- RUN pip install --no-cache-dir -r requirements.txt
34
 
35
  # Install additional optimizations for L4 GPU
36
  RUN pip install --no-cache-dir flash-attn --no-build-isolation || echo "Flash attention not available, continuing..."
 
30
 
31
  # Install requirements
32
  COPY --chown=user requirements.txt .
33
+ RUN pip install -r requirements.txt # --no-cache-dir
34
 
35
  # Install additional optimizations for L4 GPU
36
  RUN pip install --no-cache-dir flash-attn --no-build-isolation || echo "Flash attention not available, continuing..."