Malaji71 commited on
Commit
b2cd764
·
verified ·
1 Parent(s): d14c5c6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -14,9 +14,10 @@ RUN apt-get update && apt-get install -y \
14
  cmake \
15
  build-essential \
16
  curl \
 
17
  && rm -rf /var/lib/apt/lists/*
18
 
19
- # Optional: Install CUDA Toolkit (only needed if compiling from source)
20
  RUN apt-get update && apt-get install -y --no-install-recommends \
21
  cuda-toolkit-11-8 && \
22
  ln -s /usr/local/cuda-11.8 /usr/local/cuda && \
 
14
  cmake \
15
  build-essential \
16
  curl \
17
+ python3-pip \
18
  && rm -rf /var/lib/apt/lists/*
19
 
20
+ # Optional: Install CUDA Toolkit for compiling custom ops
21
  RUN apt-get update && apt-get install -y --no-install-recommends \
22
  cuda-toolkit-11-8 && \
23
  ln -s /usr/local/cuda-11.8 /usr/local/cuda && \