Mbonea commited on
Commit
efee84d
·
1 Parent(s): f82269d
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -29,6 +29,10 @@ RUN apt-get update && \
29
  COPY requirements.txt .
30
  RUN pip install --no-cache-dir -r requirements.txt
31
 
 
 
 
 
32
  # Copy the application code
33
  USER admin
34
 
 
29
  COPY requirements.txt .
30
  RUN pip install --no-cache-dir -r requirements.txt
31
 
32
+
33
+ RUN git clone https://github.com/BrokenSource/DepthFlow.git /tmp/DepthFlow \
34
+ && cd /tmp/DepthFlow \
35
+ && pip install -e .
36
  # Copy the application code
37
  USER admin
38