Skip to content

Commit 82954b2

Browse files
committed
Addi Python 3.14 to the Dockerfile
Change-Id: If3eb0b98fc02ab903fef0e31eb0086affddab654
1 parent 3bb84f7 commit 82954b2

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ RUN apt-get update -qy && \
2222
python3.10 \
2323
python3.11 \
2424
python3.12 \
25-
python3.13 && \
26-
# python3.13 \
27-
# python3.14 && \
25+
python3.13 \
26+
python3.14 && \
2827
curl -fsSo /tmp/get-pip.py https://bootstrap.pypa.io/pip/3.8/get-pip.py && \
2928
python3.8 /tmp/get-pip.py && \
3029
python3.8 -m pip install --no-cache-dir --upgrade pip && \
@@ -38,8 +37,8 @@ RUN apt-get update -qy && \
3837
python3.12 -m pip install --no-cache-dir --upgrade pip && \
3938
python3.13 /tmp/get-pip.py && \
4039
python3.13 -m pip install --no-cache-dir --upgrade pip && \
41-
# python3.14 /tmp/get-pip.py && \
42-
# python3.14 -m pip install --no-cache-dir --upgrade pip && \
40+
python3.14 /tmp/get-pip.py && \
41+
python3.14 -m pip install --no-cache-dir --upgrade pip && \
4342
rm /tmp/get-pip.py && \
4443
python3 -m pip install --no-cache-dir "nox>=2020.12.31,<2022.6" && \
4544
rm -rf /var/cache/apt/lists

0 commit comments

Comments
 (0)