FROM odoo:19.0 USER root # Install all Python dependencies required by EnCoach custom addons COPY new_project/requirements.txt /tmp/requirements.txt RUN pip install -r /tmp/requirements.txt --break-system-packages --no-warn-script-location USER odoo