Skip to content

Commit

Permalink
More Dockerfile fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinD42 committed Jun 6, 2023
1 parent 6174183 commit e4410ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 1 addition & 3 deletions docker/build/fedora-37/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ RUN \
RUN \
# Install all available Python packages and their dev packages
dnf -y install python3 python3-tools python3-devel; \
dnf -y install python3.9; \
dnf -y install python3.10;
dnf -y install python3.10 python3.10-tools python3.10-devel;

RUN \
# Clean up dnf caches
Expand All @@ -55,7 +54,6 @@ WORKDIR ${HOME}
RUN \
cd ${HOME}; \
mkdir -p ${HOME}/venvs; \
python3.9 -m venv venvs/Py39; \
python3.10 -m venv venvs/Py310; \
python3.11 -m venv venvs/Py311;

Expand Down
4 changes: 1 addition & 3 deletions docker/build/fedora-38/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ RUN \
RUN \
# Install all available Python packages and their dev packages
dnf -y install python3 python3-tools python3-devel; \
dnf -y install python3.9; \
dnf -y install python3.10;
dnf -y install python3.10 python3.10-tools python3.10-devel;

RUN \
# Clean up dnf caches
Expand All @@ -55,7 +54,6 @@ WORKDIR ${HOME}
RUN \
cd ${HOME}; \
mkdir -p ${HOME}/venvs; \
python3.9 -m venv venvs/Py39; \
python3.10 -m venv venvs/Py310; \
python3.11 -m venv venvs/Py311;

Expand Down
1 change: 1 addition & 0 deletions docker/build/rocky-9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ RUN \
webkit2gtk3-devel; \
# Install all available Python packages and their dev packages
yum -y install python3 python3-devel; \
yum -y install python3.11 python3.11-devel; \
# Clean up the yum caches
yum clean all;

Expand Down

0 comments on commit e4410ee

Please sign in to comment.