diff --git a/Dockerfile b/Dockerfile
index 21fbd85b159cd984cd77f73c07c5132704d859f3..96a810a4f36ced7c64a6e00c92b19fb1fbe66bc4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -35,6 +35,15 @@ RUN apt install --no-install-recommends \
 WORKDIR "/monodepth"
 COPY . ./
 
+# Setup BoostingMonocularDepth
+#RUN git submodule update --init
+#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
+# Merge net weights
+#RUN wget -P ./BoostingMonocularDepth/pix2pix/checkpoints/mergemodel https://www.sfu.ca/~yagiz/CVPR21/latest_net_G.pth
+#RUN cp ./weights/midas/model.pt ./BoostingMonocularDepth/midas/model.pt && cp ./weights/pix2pix/checkpoints/mergemodel/latest_net_G.pth ./BoostingMonocularDepth/pix2pix/checkpoints/mergemodel/latest_net_G.pth
+
 RUN pip3 install -r ./code/python/requirements.txt
 
 #-- build python cpp module