Skip to content

Commit e4410ee

Browse files
committed
More Dockerfile fixes
1 parent 6174183 commit e4410ee

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

docker/build/fedora-37/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ RUN \
3737
RUN \
3838
# Install all available Python packages and their dev packages
3939
dnf -y install python3 python3-tools python3-devel; \
40-
dnf -y install python3.9; \
41-
dnf -y install python3.10;
40+
dnf -y install python3.10 python3.10-tools python3.10-devel;
4241

4342
RUN \
4443
# Clean up dnf caches
@@ -55,7 +54,6 @@ WORKDIR ${HOME}
5554
RUN \
5655
cd ${HOME}; \
5756
mkdir -p ${HOME}/venvs; \
58-
python3.9 -m venv venvs/Py39; \
5957
python3.10 -m venv venvs/Py310; \
6058
python3.11 -m venv venvs/Py311;
6159

docker/build/fedora-38/Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ RUN \
3737
RUN \
3838
# Install all available Python packages and their dev packages
3939
dnf -y install python3 python3-tools python3-devel; \
40-
dnf -y install python3.9; \
41-
dnf -y install python3.10;
40+
dnf -y install python3.10 python3.10-tools python3.10-devel;
4241

4342
RUN \
4443
# Clean up dnf caches
@@ -55,7 +54,6 @@ WORKDIR ${HOME}
5554
RUN \
5655
cd ${HOME}; \
5756
mkdir -p ${HOME}/venvs; \
58-
python3.9 -m venv venvs/Py39; \
5957
python3.10 -m venv venvs/Py310; \
6058
python3.11 -m venv venvs/Py311;
6159

docker/build/rocky-9/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ RUN \
4141
webkit2gtk3-devel; \
4242
# Install all available Python packages and their dev packages
4343
yum -y install python3 python3-devel; \
44+
yum -y install python3.11 python3.11-devel; \
4445
# Clean up the yum caches
4546
yum clean all;
4647

0 commit comments

Comments
 (0)