Files
encoach_backend_new_v3/Dockerfile
Yamen Ahmad 69d8a7c52f fix: resolve all QA/UAT report issues (P0-P3)
Made-with: Cursor
2026-04-12 01:34:00 +04:00

14 lines
236 B
Docker

FROM odoo:19.0
USER root
COPY requirements.txt /tmp/requirements.txt
RUN pip3 install --no-cache-dir -r /tmp/requirements.txt
COPY custom_addons /opt/odoo/custom_addons
COPY odoo.conf /etc/odoo/odoo.conf
USER odoo
EXPOSE 8069 8072