diff --git a/dockerfiles/devenv.Dockerfile b/dockerfiles/devenv.Dockerfile
index e48dd3c49bd30e52d52094016fff7e3291b4cc9a..3c6068e18e68216e1d647cd681f8f6408d04a0ba 100644
--- a/dockerfiles/devenv.Dockerfile
+++ b/dockerfiles/devenv.Dockerfile
@@ -105,7 +105,7 @@ RUN if [ -f "${ROS_DISTRO}_requirements.txt" ]; \
 # Install pip packages
 RUN if [ -f "${ROS_DISTRO}_requirements.txt" ]; \
     then \
-        awk '/^# PIP PACKAGES/,0' ${ROS_DISTRO}_requirements.txt | grep -v '^#' | xargs -n1 pip install ;\
+        awk '/^# PIP PACKAGES/,0' ${ROS_DISTRO}_requirements.txt | grep -v '^#' | xargs -r -n1 pip install ;\
     fi
 
 RUN rm -rf *
@@ -130,7 +130,7 @@ RUN rm -rf *
 RUN apt-get --reinstall install -y libnotify-bin notify-osd
 
 # Update this date to re-run the image final update
-LABEL image.date=31-10-2023
+LABEL image.date=17-11-2023
 
 # Update final image
 RUN apt-get update \