Files
encoach_backend_v4/Dockerfile
EnCoach Deploy a45284aa8c
Some checks failed
Deploy Backend to Staging / Deploy backend to staging (push) Has been cancelled
ci: initialize v4 repo — fixed Dockerfile, full requirements, deploy pipeline
2026-04-27 22:58:03 +02:00

14 lines
297 B
Docker

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