diff --git a/dockerfiles/devenv.Dockerfile b/dockerfiles/devenv.Dockerfile
index ba999163480418fce8b0fdd09a6d7370513c5215..29ba849b6e1d0c36c0aaed7e01641838a707bb9d 100644
--- a/dockerfiles/devenv.Dockerfile
+++ b/dockerfiles/devenv.Dockerfile
@@ -192,6 +192,17 @@ RUN if [ "$CONAN" = "install" ]; \
     && conan profile update settings.compiler=gcc default; \
     fi
 
+# ARG ROSDEP=none
+# RUN if [ "$ROSDEP" != "none" ]; \
+#     then \
+#     # Install rosdep
+#     apt-get install -y python3-rosdep \
+#     && git clone ${ROSDEP} \
+#     && rosdep init \
+#     && rosdep update \
+#     && rosdep install --from-paths src --ignore-src --rosdistro $ROS_DISTRO -y; \
+#     fi
+
 RUN rm -rf *
 
 # Update this date to re-run the image final update