Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +0 -11
Dockerfile
CHANGED
@@ -13,17 +13,6 @@ RUN apt-get update && \
|
|
13 |
gnupg \
|
14 |
&& rm -rf /var/lib/apt/lists/*
|
15 |
|
16 |
-
# Install CUDA Toolkit
|
17 |
-
RUN wget https://developer.download.nvidia.com/compute/cuda/repos/debian10/x86_64/cuda-11-4_11.4.1-1_amd64.deb && \
|
18 |
-
dpkg -i cuda-11-4_11.4.1-1_amd64.deb && \
|
19 |
-
rm cuda-11-4_11.4.1-1_amd64.deb && \
|
20 |
-
apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/debian10/x86_64/7fa2af80.pub && \
|
21 |
-
echo "deb http://developer.download.nvidia.com/compute/cuda/repos/debian10/x86_64 /" > /etc/apt/sources.list.d/cuda.list && \
|
22 |
-
apt-get update && \
|
23 |
-
apt-get install -y --no-install-recommends \
|
24 |
-
cuda-toolkit-11-4 \
|
25 |
-
&& rm -rf /var/lib/apt/lists/*
|
26 |
-
|
27 |
# Install required Python packages
|
28 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
29 |
|
|
|
13 |
gnupg \
|
14 |
&& rm -rf /var/lib/apt/lists/*
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
# Install required Python packages
|
17 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
18 |
|