diff --git a/NEWS.rst b/NEWS.rst
index 559b7de5d02a5566997c5172efcbb33303b63bb1_TkVXUy5yc3Q=..a08a50f106f14a1b97214796497b271658d7014a_TkVXUy5yc3Q= 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -2,6 +2,11 @@
 History
 =======
 
+20.8.2
+------
+
+docker_build: When building image with dev tools, do not add the user flags. This allows using venv and when odoo is installed in a user, it is picked automatically.
+
 20.8.1
 ------
 
diff --git a/odoo_scripts/docker_build.py b/odoo_scripts/docker_build.py
index 559b7de5d02a5566997c5172efcbb33303b63bb1_b2Rvb19zY3JpcHRzL2RvY2tlcl9idWlsZC5weQ==..a08a50f106f14a1b97214796497b271658d7014a_b2Rvb19zY3JpcHRzL2RvY2tlcl9idWlsZC5weQ== 100644
--- a/odoo_scripts/docker_build.py
+++ b/odoo_scripts/docker_build.py
@@ -19,5 +19,5 @@
 
 _logger = logging.getLogger(__name__)
 
-__version__ = "1.4.0"
+__version__ = "1.4.1"
 __date__ = "2018-04-04"
@@ -23,5 +23,5 @@
 __date__ = "2018-04-04"
-__updated__ = "2023-03-02"
+__updated__ = "2023-10-06"
 
 
 def add_build_options(parser: argparse.ArgumentParser):
@@ -216,7 +216,7 @@
                 myfile.write("RUN pip install pyinotify")
             else:
                 myfile.write(
-                    "RUN python3 -m pip --no-cache-dir install --user pdbpp watchdog "
+                    "RUN python3 -m pip --no-cache-dir install pdbpp watchdog "
                     "ipdb pyinotify\n"
                 )