From 1cd56a740ec8cc25086cd64460b317d275343141 Mon Sep 17 00:00:00 2001 From: Prema Soundararajan <prema@uab.edu> Date: Thu, 7 Nov 2024 15:39:14 -0600 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 496379f..00ef091 100644 --- a/Dockerfile +++ b/Dockerfile @@ -84,5 +84,6 @@ RUN /app/DeepLabCut/deepenv/bin/pip install numpy==1.24.3 typing-extensions==4.5 RUN /app/DeepLabCut/deepenv/bin/pip install -r requirements.txt #RUN /app/DeepLabCut/deepenv/bin/pip install deeplabcut[gui]==2.3.8 RUN /app/DeepLabCut/deepenv/bin/pip install .["gui"] - -ENTRYPOINT ["/bin/bash"] +# Set the entry point to use the correct Python from the virtual environment +ENTRYPOINT ["/app/DeepLabCut/deepenv/bin/python3", "-m", "deeplabcut"] +#ENTRYPOINT ["/bin/bash"] -- GitLab