Skip to content

Commit

Permalink
Added check for installing openssl-devel
Browse files Browse the repository at this point in the history
  • Loading branch information
bhagyashrigai committed Jul 19, 2024
1 parent df21c2a commit 096304e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions jupyter/datascience/ubi9-python-3.9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ COPY centos-crb.repo /etc/yum.repos.d/centos-crb.repo
COPY constraints.txt /etc/constraints.txt

USER root
RUN dnf install -y unixODBC-devel python3-devel openblas* openssl-devel && dnf clean all

RUN if [ "$(uname -m)" = "ppc64le" ]; then \
dnf install -y unixODBC-devel python3-devel openblas* openssl-devel && dnf clean all \
fi
USER 1001

RUN echo "Installing softwares and packages" && \
Expand Down

0 comments on commit 096304e

Please sign in to comment.