Spaces:
Running
on
Zero
Running
on
Zero
Update Dockerfile
Browse files- 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
|
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 && \
|