Skip to content
Snippets Groups Projects
Commit ae9bee53 authored by mhby1g21's avatar mhby1g21
Browse files

Fixed dockerfile build error on line 39 by replacing it with checks for manual submodule update

parent aee403ca
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,8 @@ WORKDIR "/monodepth"
COPY . ./
# Setup BoostingMonocularDepth
RUN git submodule update --init
#RUN git submodule update --init #replaced this line with below
RUN if [ -d "BoostingMonocularDepth" ]; then echo "Submodule exists"; else echo "Submodule not found" && exit 1; fi
RUN cd ./BoostingMonocularDepth/pix2pix/ && mkdir -p checkpoints/mergemodel
# Midas weights
#RUN wget https://github.com/isl-org/MiDaS/releases/download/v2_1/model-f6b98070.pt -O ./BoostingMonocularDepth/midas/model.pt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment