From e21ee72de7ef04ea1ac57587ee5dff65eb5563e7 Mon Sep 17 00:00:00 2001 From: Matthias Mayr Date: Mon, 14 Oct 2024 14:56:29 +0200 Subject: [PATCH] Fix: Pin lang-segment-anything commit to pre SAM-2 commit This docker container can not build since the newly merged https://github.com/luca-medeiros/lang-segment-anything/pull/73 requires python 3.11, but Ubuntu 22.04 has only 3.10.13 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3bc089f..725dcf9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y git make build-e RUN apt-get install -y libgl1 libgl1-mesa-glx libglib2.0-0 RUN pip install -U pip -RUN pip install -U git+https://github.com/luca-medeiros/lang-segment-anything.git +RUN pip install -U git+https://github.com/luca-medeiros/lang-segment-anything.git@05c386ee95b26a8ec8398bebddf70ffb8ddd3faf RUN pip install grpcio protobuf pyransac3d transformations scikit-learn RUN mkdir /app