Skip to content

Commit

Permalink
fix(docker): fix python packages installation for UBI 9
Browse files Browse the repository at this point in the history
Signed-off-by: Frederico Araujo <[email protected]>
  • Loading branch information
araujof committed Sep 30, 2023
1 parent 4b8bb66 commit 34b315a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ COPY ./LICENSE.md /licenses/
# Install Python environment
RUN dnf install -y --disableplugin=subscription-manager \
gcc \
python38 \
python38-devel \
python38-wheel && \
python3 \
python3-devel \
python3-wheel && \
mkdir -p /usr/local/lib/python3.8/site-packages && \
ln -s /usr/bin/python3 /usr/bin/python && \
dnf -y clean all && rm -rf /var/cache/dnf
Expand Down

0 comments on commit 34b315a

Please sign in to comment.