DuyTa commited on
Commit
240ee25
·
verified ·
1 Parent(s): 31925ef

Update pipelines/dockerfile

Browse files
Files changed (1) hide show
  1. pipelines/dockerfile +1 -2
pipelines/dockerfile CHANGED
@@ -1,4 +1,3 @@
1
- # Use NVIDIA CUDA 12.0, cuDNN 8, and Ubuntu 22.04 as the base image
2
  FROM nvidia/cuda:12.0.0-cudnn8-runtime-ubuntu22.04 AS base
3
 
4
  # Use arguments to make CUDA version and GPU usage configurable
@@ -44,7 +43,7 @@ RUN pip install uv && \
44
  fi
45
 
46
  # Install other Python dependencies
47
- RUN pip install --system -r requirements.txt --no-cache-dir
48
 
49
  # Copy the application code
50
  COPY . .
 
 
1
  FROM nvidia/cuda:12.0.0-cudnn8-runtime-ubuntu22.04 AS base
2
 
3
  # Use arguments to make CUDA version and GPU usage configurable
 
43
  fi
44
 
45
  # Install other Python dependencies
46
+ RUN pip install -r requirements.txt --no-cache-dir
47
 
48
  # Copy the application code
49
  COPY . .