Skip to content

Commit

Permalink
Enable Python39 on Rocky Linux 8
Browse files Browse the repository at this point in the history
  • Loading branch information
giffels committed Jul 27, 2023
1 parent 07723a6 commit b30beb2
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ RUN curl -sL https://rpm.nodesource.com/setup_18.x | bash -

RUN yum -y update \
&& yum -y install git \
python38 \
python39 \
gcc \
python38-devel \
python39-devel \
nodejs \
glibc-langpack-en \
&& yum clean all

# Make Python3.9 default
RUN alternatives --set python3 /usr/bin/python3.9

SHELL [ "/bin/bash", "--noprofile", "--norc", "-e", "-o", "pipefail", "-c" ]

0 comments on commit b30beb2

Please sign in to comment.