diff --git a/Dockerfile b/Dockerfile index 5861a7e459621a2ae459c45f5e6518ce837d72f9..1a5295e0ffaec40a51e378ab5f5400a4ac3e93a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -56,18 +56,17 @@ RUN apt-get update && apt-get install -y \ xorg \ zip \ && rm -rf /var/lib/apt/lists - -#RUN apt-get update -#RUN apt-get install -y qt6-base-dev - -RUN apt-get update && apt-get install -y \ - qtbase5-dev \ - qttools5-dev-tools \ - libqt5x11extras5 \ - libqt5gui5 \ - libqt5widgets5 \ - libqt5core5a \ - && rm -rf /var/lib/apt/lists/* +RUN apt-get update +RUN apt-get install -y qt6-base-dev + +#RUN apt-get update && apt-get install -y \ + # qtbase5-dev \ + # qttools5-dev-tools \ + # libqt5x11extras5 \ + #libqt5gui5 \ + # libqt5widgets5 \ + # libqt5core5a \ + # && rm -rf /var/lib/apt/lists/* RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1 @@ -87,7 +86,7 @@ RUN python3 -m venv deepenv # Upgrade pip within the virtual environment RUN /app/DeepLabCut/deepenv/bin/pip install --upgrade pip #### -RUN /app/DeepLabCut/deepenv/bin/pip install pyqt5 +#RUN /app/DeepLabCut/deepenv/bin/pip install pyqt5 RUN /app/DeepLabCut/deepenv/bin/pip install wheel # Install compatible versions of numpy and typing-extensions @@ -98,5 +97,5 @@ RUN /app/DeepLabCut/deepenv/bin/pip install .["gui"] # Set the entry point to use the correct Python from the virtual environment #ENTRYPOINT ["/app/DeepLabCut/deepenv/bin/python3", "-m", "deeplabcut"] -RUN strip --remove-section=.note.ABI-tag /lib/x86_64-linux-gnu/libQt5Core.so.5 +#RUN strip --remove-section=.note.ABI-tag /lib/x86_64-linux-gnu/libQt5Core.so.5 ENTRYPOINT ["/bin/bash"]