From 9c00056714fc3d2187f660cb44096c5ac9e282bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikel=20Brostr=C3=B6m?= Date: Tue, 9 Jul 2024 14:48:59 +0200 Subject: [PATCH] test lighter image --- Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index d693c6930..68466b98d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,13 +11,12 @@ RUN apt update WORKDIR /usr/src/boxmot # Clone with submodules -RUN git clone https://github.com/mikel-brostrom/yolo_tracking.git -b master /usr/src/boxmot +RUN git clone https://github.com/mikel-brostrom/boxmot.git -b master /usr/src/boxmot # Install pip packages -RUN python3 -m pip install --upgrade pip wheel -RUN pip install --no-cache -e . -# Install custom ultralytics package which makes model from other repos loadable -RUN pip install git+https://github.com/mikel-brostrom/ultralytics.git +RUN python3 -m pip install --upgrade pip poetry +RUN poetry install --with yolo +RUN poetry shell # ------------------------------------------------------------------------------