This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM odoo:17.0 | |
| USER root | |
| # تثبيت أدوات البناء | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| gcc g++ python3-dev libffi-dev libssl-dev \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # الخطوة الأهم: تثبيت cryptography 41 قبل أي شيء آخر |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM odoo:17.0 | |
| USER root | |
| # تثبيت أدوات البناء اللازمة | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| gcc g++ python3-dev libffi-dev libssl-dev \ | |
| && rm -rf /var/lib/apt/lists/* | |
| # تثبيت جميع المكتبات المطلوبة على مستوى النظام |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ar" dir="rtl"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Odoo SaaS — لوحة التحكم</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com" /> | |
| <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap" rel="stylesheet" /> | |
| <style> | |
| *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } |