feat: Initialize project and Phase 1 MyMach Social Next-Gen module structure

This commit is contained in:
cerenX9
2026-07-27 12:46:58 +03:00
commit 75c390d1a4
13 changed files with 257 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
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 -r /etc/odoo/requirements.txt
# Odoo kullanıcısına geri dön
USER odoo