KevinX-Penn28 commited on
Commit
2bd8bfe
·
verified ·
1 Parent(s): 3b60663

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 /app/video-sam2 && \
35
- git clone https://github.com/video-fm/GroundingDINO.git /app/groundingdino && \
36
- git clone https://github.com/video-fm/LASER.git /app/laser
37
 
38
  # Editable installs
39
- RUN pip install --no-cache-dir -e /app/video-sam2 && \
40
- pip install --no-cache-dir -e /app/groundingdino && \
41
- pip install --no-cache-dir -e /app/laser
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 . .