Files
mymach_social_nextgen/Dockerfile

13 lines
294 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM odoo:19.0
USER root
# Gereksinimleri Odoo container'ı içine kopyala
COPY requirements.txt /etc/odoo/
# Gerekli Python paketlerini kur
RUN pip3 install --no-cache-dir --break-system-packages --ignore-installed -r /etc/odoo/requirements.txt
# Odoo kullanıcısına geri dön
USER odoo