Skip to content
Snippets Groups Projects
Commit a08a50f1 authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:pencil: docker_build: remove --user when installing dev tools

--user is not compatible with the use of venv.
parent 559b7de5
No related branches found
Tags 7.0.1
No related merge requests found
......@@ -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
------
......
......@@ -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"
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment