Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +6 -6
Dockerfile
CHANGED
|
@@ -31,14 +31,14 @@ COPY --chown=user:user requirements.txt .
|
|
| 31 |
RUN pip install --upgrade pip && \
|
| 32 |
pip install --no-cache-dir -r requirements.txt
|
| 33 |
|
| 34 |
-
RUN git clone https://github.com/video-fm/video-sam2.git /
|
| 35 |
-
git clone https://github.com/video-fm/GroundingDINO.git /
|
| 36 |
-
git clone https://github.com/video-fm/LASER.git /
|
| 37 |
|
| 38 |
# Editable installs
|
| 39 |
-
RUN pip install --no-cache-dir -e /
|
| 40 |
-
pip install --no-cache-dir -e /
|
| 41 |
-
pip install --no-cache-dir -e /
|
| 42 |
|
| 43 |
# Copy app
|
| 44 |
COPY --chown=user:user . .
|
|
|
|
| 31 |
RUN pip install --upgrade pip && \
|
| 32 |
pip install --no-cache-dir -r requirements.txt
|
| 33 |
|
| 34 |
+
RUN git clone https://github.com/video-fm/video-sam2.git ./video-sam2 && \
|
| 35 |
+
git clone https://github.com/video-fm/GroundingDINO.git ./groundingdino && \
|
| 36 |
+
git clone https://github.com/video-fm/LASER.git ./laser
|
| 37 |
|
| 38 |
# Editable installs
|
| 39 |
+
RUN pip install --no-cache-dir -e ./video-sam2 && \
|
| 40 |
+
pip install --no-cache-dir -e ./groundingdino && \
|
| 41 |
+
pip install --no-cache-dir -e ./laser
|
| 42 |
|
| 43 |
# Copy app
|
| 44 |
COPY --chown=user:user . .
|