From 28519cb185a793f32c360c73765b5158c5248fc1 Mon Sep 17 00:00:00 2001 From: Giovanni Ortolani Date: Mon, 2 Dec 2024 15:08:51 +0000 Subject: [PATCH] Add importlib_metadata forced install in Dockerfile. --- Dockerfile.base | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile.base b/Dockerfile.base index b398e69971..1b27eb7d8c 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -21,6 +21,8 @@ COPY . . RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata RUN ./install.sh RUN pip3 install --upgrade setuptools testresources +# Line below is a workaround for the issue https://github.com/google-deepmind/open_spiel/issues/1293 +RUN pip install importlib_metadata --force-reinstall RUN pip3 install --upgrade -r requirements.txt RUN pip3 install --upgrade cmake