workspace-v1/shared/knowledge-base/reference/odoo/odoo-18.0/setup/package.dffedora
rckrdmrd 66161b1566 feat: Workspace-v1 complete migration with NEXUS v3.4
Sistema NEXUS v3.4 migrado con:

Estructura principal:
- core/orchestration: Sistema SIMCO + CAPVED (27 directivas, 28 perfiles)
- core/catalog: Catalogo de funcionalidades reutilizables
- shared/knowledge-base: Base de conocimiento compartida
- devtools/scripts: Herramientas de desarrollo
- control-plane/registries: Control de servicios y CI/CD
- orchestration/: Configuracion de orquestacion de agentes

Proyectos incluidos (11):
- gamilit (submodule -> GitHub)
- trading-platform (OrbiquanTIA)
- erp-suite con 5 verticales:
  - erp-core, construccion, vidrio-templado
  - mecanicas-diesel, retail, clinicas
- betting-analytics
- inmobiliaria-analytics
- platform_marketing_content
- pos-micro, erp-basico

Configuracion:
- .gitignore completo para Node.js/Python/Docker
- gamilit como submodule (git@github.com:rckrdmrd/gamilit-workspace.git)
- Sistema de puertos estandarizado (3005-3199)

Generated with NEXUS v3.4 Migration System
EPIC-010: Configuracion Git y Repositorios
2026-01-04 03:37:42 -06:00

74 lines
2.0 KiB
Plaintext

# Please note that this Dockerfile is used for testing nightly builds and should
# not be used to deploy Odoo
FROM fedora:42
MAINTAINER Odoo S.A. <info@odoo.com>
# Dependencies and postgres
RUN dnf install \
createrepo \
libsass \
postgresql \
postgresql-contrib \
postgresql-devel \
postgresql-libs \
postgresql-server \
python3-PyPDF2 \
python3-asn1crypto \
python3-babel \
python3-cbor2 \
python3-chardet \
python3-cryptography \
python3-dateutil \
python3-devel \
python3-docutils \
python3-freezegun \
python3-geoip2 \
python3-gevent \
python3-greenlet \
python3-idna \
python3-jinja2 \
python3-libsass \
python3-lxml \
python3-lxml-html-clean \
python3-magic \
python3-markupsafe \
python3-mock \
python3-num2words \
python3-ofxparse.noarch \
python3-openpyxl \
python3-passlib \
python3-pillow \
python3-polib \
python3-psutil \
python3-psycopg2 \
python3-pyldap \
python3-pyOpenSSL \
python3-pyserial \
python3-pytz \
python3-pyusb \
python3-qrcode \
python3-reportlab \
python3-requests \
python3-rjsmin \
python3-six \
python3-stdnum \
python3-vobject \
python3-werkzeug \
python3-wheel \
python3-xlrd \
python3-xlsxwriter \
python3-xlwt \
python3-zeep \
rpmdevtools -y -q && \
dnf clean all
# Postgres configuration
RUN mkdir -p /var/lib/postgres/data /var/run/postgresql
RUN chown -R postgres:postgres /var/lib/postgres/data /var/run/postgresql
RUN su postgres -c "initdb -D /var/lib/postgres/data -E UTF-8"
RUN cp /usr/share/pgsql/postgresql.conf.sample /var/lib/postgres/data/postgresql.conf
RUN echo "PS1=\"[\u@nightly-tests] # \"" > ~/.bashrc
USER odoo