added the thing
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -30,6 +30,12 @@ COPY requirements.txt .
|
|
30 |
RUN pip install --no-cache-dir -r requirements.txt
|
31 |
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
# Create necessary directories and set permissions
|
34 |
RUN mkdir -p /home/admin/.local/share/BrokenSource/Broken \
|
35 |
&& mkdir -p /home/admin/.local/share/BrokenSource/DepthFlow/Config \
|
|
|
30 |
RUN pip install --no-cache-dir -r requirements.txt
|
31 |
|
32 |
|
33 |
+
# Clone DepthFlow repository and checkout specific commit
|
34 |
+
RUN git clone https://github.com/BrokenSource/DepthFlow.git /tmp/DepthFlow \
|
35 |
+
&& cd /tmp/DepthFlow \
|
36 |
+
&& git checkout 3f518988eaba01fc7712228ec56756658bcfdb04 \
|
37 |
+
&& pip install -e .
|
38 |
+
|
39 |
# Create necessary directories and set permissions
|
40 |
RUN mkdir -p /home/admin/.local/share/BrokenSource/Broken \
|
41 |
&& mkdir -p /home/admin/.local/share/BrokenSource/DepthFlow/Config \
|