Skip to content
This repository was archived by the owner on Dec 9, 2024. It is now read-only.

Commit 907f501

Browse files
authored
Revert "Update Dockerfile_ubuntu_2004_tf_cuda_11 (#539)" (#540)
This reverts commit 4a5fb39.
1 parent 4a5fb39 commit 907f501

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

perfzero/docker/Dockerfile_ubuntu_2004_tf_cuda_11

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM nvidia/cuda:11.8.0-cudnn8-devel-ubuntu20.04 as base
66
ARG tensorflow_pip_spec="tf-nightly"
77
ARG local_tensorflow_pip_spec=""
88
ARG extra_pip_specs=""
9-
ENV PIP_CMD="python3.11 -m pip"
9+
ENV PIP_CMD="python3.9 -m pip"
1010

1111
# setup.py passes the base path of local .whl file is chosen for the docker image.
1212
# Otherwise passes an empty existing file from the context.
@@ -40,19 +40,19 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
4040
lsb-core \
4141
curl
4242

43-
# Python 3.11 related deps in this ppa.
43+
# Python 3.9 related deps in this ppa.
4444
RUN add-apt-repository ppa:deadsnakes/ppa
4545

4646

4747
# Install / update Python and Python3
4848
RUN apt-get install -y --no-install-recommends \
49-
python3.11 \
49+
python3.9 \
5050
python3-pip \
51-
python3.11-dev \
51+
python3.9-dev \
5252
python3-setuptools \
53-
python3.11-venv \
54-
python3.11-distutils \
55-
python3.11-lib2to3
53+
python3.9-venv \
54+
python3.9-distutils \
55+
python3.9-lib2to3
5656

5757
# Upgrade pip, need to use pip3 and then pip after this or an error
5858
# is thrown for no main found.

0 commit comments

Comments
 (0)