fix centos make docker

This commit is contained in:
Laurent Perron
2023-07-06 15:18:23 +02:00
parent 60fd5bf31c
commit a855ded443

View File

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