We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b81739 commit 75ef97bCopy full SHA for 75ef97b
cpu/Dockerfile
@@ -29,6 +29,7 @@ RUN \
29
apt-get -y install --no-install-recommends \
30
python${PYTHON_VERSION} \
31
python${PYTHON_VERSION}-dev \
32
+ $( if [ "${PYTHON_VERSION%%.*}" -eq 3 ] && [ "${PYTHON_VERSION#*.}" -lt 10 ]; then echo "python${PYTHON_VERSION}-distutils"; fi ) \
33
curl \
34
wget && \
35
rm -rf /var/lib/apt/lists/* && \
gpu/Dockerfile
@@ -35,6 +35,7 @@ RUN \
36
37
38
39
40
41
0 commit comments