FROM odoo:19.0 USER root # Install all Python dependencies required by EnCoach custom addons. # --ignore-installed: skip uninstalling system packages that lack RECORD files # (e.g. Debian's typing_extensions). # Canonical source: repo-root requirements.txt (the legacy copy under # new_project/ is no longer authoritative — see new_project/DEPRECATED.md). COPY requirements.txt /tmp/requirements.txt RUN pip install -r /tmp/requirements.txt --break-system-packages --no-warn-script-location --ignore-installed USER odoo