fix centos make docker

This commit is contained in:
Laurent Perron
2023-07-06 15:29:58 +02:00
parent a855ded443
commit c689c31a67

View File

@@ -1,9 +1,9 @@
FROM ortools/make:centos_swig AS env
RUN dnf -y update \
&& dnf -y install python311-devel python311-numpy python11-pip \
&& dnf -y install python39-devel python39-numpy python39-pip \
&& dnf clean all \
&& rm -rf /var/cache/dnf
RUN python3.11 -m pip install absl-py mypy-protobuf pandas
RUN python3.9 -m pip install absl-py mypy-protobuf pandas
FROM env AS devel
WORKDIR /home/project