Skip to content
GitLab
Explorer
Connexion
Navigation principale
Rechercher ou aller à…
Projet
O
odoo_docker
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Déploiement
Registre de conteneurs
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse du dépôt
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté GitLab
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Afficher davantage de fils d'Ariane
Le Filament
odoo_docker
Validations
30f9225e
Valider
30f9225e
rédigé
Il y a 2 ans
par
Rémi - Le Filament
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
[UPD] rework default modules and dependencies
parent
746877c1
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Modifications
2
Pipelines
1
Afficher les modifications d'espaces
En ligne
Côte à côte
Affichage de
2 fichiers modifiés
16.0-scratch.Dockerfile
+44
-27
44 ajouts, 27 suppressions
16.0-scratch.Dockerfile
16.0.Dockerfile
+34
-20
34 ajouts, 20 suppressions
16.0.Dockerfile
avec
78 ajouts
et
47 suppressions
16.0-scratch.Dockerfile
+
44
−
27
Voir le fichier @
30f9225e
...
@@ -53,32 +53,40 @@ RUN mkdir -p \
...
@@ -53,32 +53,40 @@ RUN mkdir -p \
/tmp/oca-repos/
\
/tmp/oca-repos/
\
/newroot/opt/odoo/additional_addons
\
/newroot/opt/odoo/additional_addons
\
/newroot/opt/odoo/private_addons
\
/newroot/opt/odoo/private_addons
\
&&
git clone
-b
16.0
--depth
1
\
https://github.com/OCA/account-financial-reporting.git
\
/tmp/oca-repos/account-financial-reporting
\
&&
mv
/tmp/oca-repos/account-financial-reporting/account_tax_balance
\
/newroot/opt/odoo/additional_addons/
\
&&
git clone
-b
16.0
--depth
1
\
&&
git clone
-b
16.0
--depth
1
\
https://github.com/OCA/account-financial-tools.git
\
https://github.com/OCA/account-financial-tools.git
\
/tmp/oca-repos/account-financial-tools
\
/tmp/oca-repos/account-financial-tools
\
# && mv /tmp/oca-repos/account-financial-tools/account_lock_date_update
\
# && mv /tmp/oca-repos/account-financial-tools/account_lock_date_update \
# https://github.com/OCA/account-financial-tools/pull/1526
&& mv /tmp/oca-repos/account-financial-tools/account_move_name_sequence \
&& mv /tmp/oca-repos/account-financial-tools/account_move_name_sequence \
# /tmp/oca-repos/account-financial-tools/account_reconcile_show_boolean \
# /tmp/oca-repos/account-financial-tools/account_reconcile_show_boolean \
/tmp/oca-repos/account-financial-tools/account_usability \
/newroot/opt/odoo/additional_addons/ \
/newroot/opt/odoo/additional_addons/ \
# && git clone -b 16.0 --depth 1 \
# && git clone -b 16.0 --depth 1 \
# https://github.com/OCA/account-invoicing.git \
# https://github.com/OCA/account-invoicing.git \
# /tmp/oca-repos/account-invoicing \
# /tmp/oca-repos/account-invoicing \
# && mv /tmp/oca-repos/account-invoicing/sale_timesheet_invoice_description \
# && mv /tmp/oca-repos/account-invoicing/sale_timesheet_invoice_description \
# /newroot/opt/odoo/additional_addons/ \
# /newroot/opt/odoo/additional_addons/ \
# Until migrated to OCA (https://github.com/OCA/account-reconcile/pull/500)
&& git clone -b 16.0-add-account_reconcile_oca --depth 1 \
https://github.com/tegin/account-reconcile.git \
/tmp/oca-repos/account-reconcile \
&& mv /tmp/oca-repos/account-reconcile/account_reconcile_oca \
/newroot/opt/odoo/additional_addons/ \
# && git clone -b 16.0 --depth 1 \
# && git clone -b 16.0 --depth 1 \
# https://github.com/OCA/account-reconcile.git \
# https://github.com/OCA/account-reconcile.git \
# /tmp/oca-repos/account-reconcile \
# /tmp/oca-repos/account-reconcile \
# && mv /tmp/oca-repos/account-reconcile/account_reconciliation_widget
\
# Until migrated to OCA (https://github.com/OCA/bank-statement-import/pull/535)
# /newroot/opt/odoo/additional_addons/
\
&& git clone -b 16.0-mig-account_statement_import --depth 1 \
https://github.com/sonhd91/bank-statement-import.git \
/tmp/oca-repos/bank-statement-import \
&& mv /tmp/oca-repos/bank-statement-import/account_statement_import_base \
/tmp/oca-repos/bank-statement-import/account_statement_import_file \
/newroot/opt/odoo/additional_addons/ \
# && git clone -b 16.0 --depth 1 \
# && git clone -b 16.0 --depth 1 \
# https://github.com/OCA/bank-statement-import.git \
# https://github.com/OCA/bank-statement-import.git \
# /tmp/oca-repos/bank-statement-import \
# /tmp/oca-repos/bank-statement-import \
# && mv /tmp/oca-repos/bank-statement-import/account_statement_import
\
# && mv /tmp/oca-repos/bank-statement-import/account_statement_import_base \
# /tmp/oca-repos/bank-statement-import/account_statement_import_file \
# /tmp/oca-repos/bank-statement-import/account_statement_import_ofx \
# /tmp/oca-repos/bank-statement-import/account_statement_import_ofx \
# /newroot/opt/odoo/additional_addons/ \
# /newroot/opt/odoo/additional_addons/ \
# && git clone -b 16.0 --depth 1 \
# && git clone -b 16.0 --depth 1 \
...
@@ -86,6 +94,12 @@ RUN mkdir -p \
...
@@ -86,6 +94,12 @@ RUN mkdir -p \
# /tmp/oca-repos/crm \
# /tmp/oca-repos/crm \
# && mv /tmp/oca-repos/crm/crm_stage_probability \
# && mv /tmp/oca-repos/crm/crm_stage_probability \
# /newroot/opt/odoo/additional_addons/ \
# /newroot/opt/odoo/additional_addons/ \
&& git clone -b 16.0 --depth 1 \
https://github.com/OCA/l10n-france.git \
/tmp/oca-repos/l10n-france \
&& mv /tmp/oca-repos/l10n-france/l10n_fr_siret \
/tmp/oca-repos/l10n-france/l10n_fr_siret_lookup \
/newroot/opt/odoo/additional_addons/ &&\
&& git clone -b 16.0 --depth 1 \
&& git clone -b 16.0 --depth 1 \
https://github.com/OCA/partner-contact.git \
https://github.com/OCA/partner-contact.git \
/tmp/oca-repos/partner-contact \
/tmp/oca-repos/partner-contact \
...
@@ -95,11 +109,8 @@ RUN mkdir -p \
...
@@ -95,11 +109,8 @@ RUN mkdir -p \
&& git clone -b 16.0 --depth 1 \
&& git clone -b 16.0 --depth 1 \
https://github.com/OCA/project.git \
https://github.com/OCA/project.git \
/tmp/oca-repos/project \
/tmp/oca-repos/project \
# && mv /tmp/oca-repos/project/project_category
\
# /tmp/oca-repos/project/project_status
\
&& mv /tmp/oca-repos/project/project_task_default_stage \
&& mv /tmp/oca-repos/project/project_task_default_stage \
/tmp/oca-repos/project/project_template \
/tmp/oca-repos/project/project_template \
# /tmp/oca-repos/project/project_timeline
\
/newroot/opt/odoo/additional_addons/ \
/newroot/opt/odoo/additional_addons/ \
# && git clone -b 16.0 --depth 1 \
# && git clone -b 16.0 --depth 1 \
# https://github.com/OCA/server-auth.git \
# https://github.com/OCA/server-auth.git \
...
@@ -115,22 +126,20 @@ RUN mkdir -p \
...
@@ -115,22 +126,20 @@ RUN mkdir -p \
&& git clone -b 16.0 --depth 1 \
&& git clone -b 16.0 --depth 1 \
https://github.com/OCA/server-tools.git \
https://github.com/OCA/server-tools.git \
/tmp/oca-repos/server-tools \
/tmp/oca-repos/server-tools \
#
&& mv /tmp/oca-repos/server-tools/base_
search_fuzzy
\
&& mv /tmp/oca-repos/server-tools/base_
view_inheritance_extension
\
&&
mv
/tmp/oca-repos/server-tools/module_change_auto_install
\
/tmp/oca-repos/server-tools/module_change_auto_install \
/newroot/opt/odoo/additional_addons/ \
/newroot/opt/odoo/additional_addons/ \
&& git clone -b 16.0 --depth 1 \
&& git clone -b 16.0 --depth 1 \
https://github.com/OCA/server-ux.git \
https://github.com/OCA/server-ux.git \
/tmp/oca-repos/server-ux \
/tmp/oca-repos/server-ux \
&&
mv
/tmp/oca-repos/server-ux/base_technical_features
\
&& mv /tmp/oca-repos/server-ux/server_action_mass_edit \
/tmp/oca-repos/server-ux/date_range
\
# /tmp/oca-repos/server-ux/mass_editing
\
/newroot/opt/odoo/additional_addons/ \
/newroot/opt/odoo/additional_addons/ \
# && git clone -b 16.0 --depth 1 \
# && git clone -b 16.0 --depth 1 \
# https://github.com/OCA/social.git \
# https://github.com/OCA/social.git \
# /tmp/oca-repos/social \
# /tmp/oca-repos/social \
# && mv /tmp/oca-repos/social/base_search_mail_content \
# && mv /tmp/oca-repos/social/base_search_mail_content \
# /tmp/oca-repos/social/mail_debrand
\
# /tmp/oca-repos/social/mail_debrand \
# https://github.com/OCA/social/pull/1021
# /tmp/oca-repos/social/mail_tracking
\
# /tmp/oca-repos/social/mail_tracking \
# https://github.com/OCA/social/pull/1029
# /newroot/opt/odoo/additional_addons/ \
# /newroot/opt/odoo/additional_addons/ \
&& git clone -b 16.0 --depth 1 \
&& git clone -b 16.0 --depth 1 \
https://github.com/OCA/web.git \
https://github.com/OCA/web.git \
...
@@ -138,22 +147,30 @@ RUN mkdir -p \
...
@@ -138,22 +147,30 @@ RUN mkdir -p \
&& mv /tmp/oca-repos/web/web_environment_ribbon \
&& mv /tmp/oca-repos/web/web_environment_ribbon \
# /tmp/oca-repos/web/web_responsive \
# /tmp/oca-repos/web/web_responsive \
# /tmp/oca-repos/web/web_no_bubble \
# /tmp/oca-repos/web/web_no_bubble \
# /tmp/oca-repos/web/web_timeline
\
/tmp/oca-repos/web/web_refresher \
/tmp/oca-repos/web/web_theme_classic \
/newroot/opt/odoo/additional_addons/ \
/newroot/opt/odoo/additional_addons/ \
&& rm -rf /tmp/oca-repos/ \
&& rm -rf /tmp/oca-repos/ \
&& find /newroot/opt/odoo/additional_addons/*/i18n/ -type f -not -name 'fr.po' -delete
&& find /newroot/opt/odoo/additional_addons/*/i18n/ -type f -not -name 'fr.po' -delete
#
&& git clone -b 16.0 --depth 1 \
&& git clone -b 16.0 --depth 1 \
#
https://sources.le-filament.com/lefilament/remove_login_links.git \
https://sources.le-filament.com/lefilament/remove_login_links.git \
#
/newroot/opt/odoo/private_addons/remove_login_links \
/newroot/opt/odoo/private_addons/remove_login_links \
#
&& git clone -b 16.0 --depth 1 \
&& git clone -b 16.0 --depth 1 \
#
https://sources.le-filament.com/lefilament/lefilament_release_agent.git \
https://sources.le-filament.com/lefilament/lefilament_release_agent.git \
#
/newroot/opt/odoo/private_addons/lefilament_release_agent
/newroot/opt/odoo/private_addons/lefilament_release_agent
# Fix a ldap library bug.
# Fix a ldap library bug.
RUN
echo
-n
"INPUT ( libldap.so )"
>
/usr/lib/libldap_r.so
RUN
echo
-n
"INPUT ( libldap.so )"
>
/usr/lib/libldap_r.so
# Install Python requirements.
# Install Python requirements.
RUN
pip
install
--requirement
/newroot/opt/odoo/odoo/requirements.txt
RUN
pip
install
--requirement
/newroot/opt/odoo/odoo/requirements.txt
\
# astor required by base_view_inheritance_extension
# openupgradelib required for OCA module migration from one version to another
# phonenumbers required by phone_validation
# python-stdnum>=1.18 required by l10n_fr_siret and l10n_fr_siret_lookup
# PyYAML required by custom scripts for adding modules (https://sources.le-filament.com/lefilament/ansible-roles/docker_odoo/-/tree/master/templates)
# zxcvbn required by password_security
pip install astor openupgradelib phonenumbers python-stdnum>=1.18 PyYAML zxcvbn
# Only copy libraries of needed binaries to new root.
# Only copy libraries of needed binaries to new root.
RUN
ls
\
RUN
ls
\
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
16.0.Dockerfile
+
34
−
20
Voir le fichier @
30f9225e
...
@@ -4,7 +4,13 @@ RUN set -x; \
...
@@ -4,7 +4,13 @@ RUN set -x; \
apt-get
install
-y
--no-install-recommends
build-essential libldap2-dev libpq-dev libsasl2-dev
&&
\
apt-get
install
-y
--no-install-recommends
build-essential libldap2-dev libpq-dev libsasl2-dev
&&
\
pip
install
wheel
&&
\
pip
install
wheel
&&
\
pip wheel
--wheel-dir
=
/svc/wheels
-r
https://raw.githubusercontent.com/oca/OCB/16.0/requirements.txt
&&
\
pip wheel
--wheel-dir
=
/svc/wheels
-r
https://raw.githubusercontent.com/oca/OCB/16.0/requirements.txt
&&
\
pip wheel
--wheel-dir
=
/svc/wheels phonenumbers simplejson openupgradelib PyYAML
# astor required by base_view_inheritance_extension
# openupgradelib required for OCA module migration from one version to another
# phonenumbers required by phone_validation
# python-stdnum>=1.18 required by l10n_fr_siret and l10n_fr_siret_lookup
# PyYAML required by custom scripts for adding modules (https://sources.le-filament.com/lefilament/ansible-roles/docker_odoo/-/tree/master/templates)
# zxcvbn required by password_security
pip wheel --wheel-dir=/svc/wheels astor openupgradelib phonenumbers python-stdnum>=1.18 PyYAML zxcvbn
FROM
python:3.10-slim-bullseye
AS
final
FROM
python:3.10-slim-bullseye
AS
final
...
@@ -49,35 +55,45 @@ RUN set -x; \
...
@@ -49,35 +55,45 @@ RUN set -x; \
# Install Odoo OCA default dependencies - Commented modules do not exist yet
# Install Odoo OCA default dependencies - Commented modules do not exist yet
RUN
set
-x
;
\
RUN
set
-x
;
\
mkdir
-p
/tmp/oca-repos/
&&
\
mkdir
-p
/tmp/oca-repos/
&&
\
git clone
-b
16.0
--depth
1 https://github.com/OCA/account-financial-reporting.git /tmp/oca-repos/account-financial-reporting
&&
\
mv
/tmp/oca-repos/account-financial-reporting/account_tax_balance /opt/odoo/additional_addons/
&&
\
git clone
-b
16.0
--depth
1 https://github.com/OCA/account-financial-tools.git /tmp/oca-repos/account-financial-tools
&&
\
git clone
-b
16.0
--depth
1 https://github.com/OCA/account-financial-tools.git /tmp/oca-repos/account-financial-tools
&&
\
# mv /tmp/oca-repos/account-financial-tools/account_lock_date_update
\
# mv /tmp/oca-repos/account-financial-tools/account_lock_date_update \
# https://github.com/OCA/account-financial-tools/pull/1526
mv /tmp/oca-repos/account-financial-tools/account_move_name_sequence \
mv /tmp/oca-repos/account-financial-tools/account_move_name_sequence \
# /tmp/oca-repos/account-financial-tools/account_reconcile_show_boolean \
# /tmp/oca-repos/account-financial-tools/account_reconcile_show_boolean \
/tmp/oca-repos/account-financial-tools/account_usability \
/opt/odoo/additional_addons/ &&\
/opt/odoo/additional_addons/ &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/account-invoicing.git /tmp/oca-repos/account-invoicing &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/account-invoicing.git /tmp/oca-repos/account-invoicing &&\
# mv /tmp/oca-repos/account-invoicing/sale_timesheet_invoice_description \
# mv /tmp/oca-repos/account-invoicing/sale_timesheet_invoice_description \
# /opt/odoo/additional_addons/ &&\
# /opt/odoo/additional_addons/ &&\
# Until migrated to OCA (https://github.com/OCA/account-reconcile/pull/500)
git clone -b 16.0-add-account_reconcile_oca --depth 1 https://github.com/tegin/account-reconcile.git /tmp/oca-repos/account-reconcile &&\
mv /tmp/oca-repos/account-reconcile/account_reconcile_oca \
/opt/odoo/additional_addons/ &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/account-reconcile.git /tmp/oca-repos/account-reconcile &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/account-reconcile.git /tmp/oca-repos/account-reconcile &&\
# mv /tmp/oca-repos/account-reconcile/account_reconciliation_widget \
# mv /tmp/oca-repos/account-reconcile/account_reconciliation_widget \
# /opt/odoo/additional_addons/ &&\
# /opt/odoo/additional_addons/ &&\
# Until migrated to OCA (https://github.com/OCA/bank-statement-import/pull/535)
git clone -b 16.0-mig-account_statement_import --depth 1 https://github.com/sonhd91/bank-statement-import.git /tmp/oca-repos/bank-statement-import &&\
mv /tmp/oca-repos/bank-statement-import/account_statement_import_base \
/tmp/oca-repos/bank-statement-import/account_statement_import_file \
/opt/odoo/additional_addons/ &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/bank-statement-import.git /tmp/oca-repos/bank-statement-import &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/bank-statement-import.git /tmp/oca-repos/bank-statement-import &&\
# mv /tmp/oca-repos/bank-statement-import/account_statement_import
\
# mv /tmp/oca-repos/bank-statement-import/account_statement_import_base \
# /tmp/oca-repos/bank-statement-import/account_statement_import_file \
# /tmp/oca-repos/bank-statement-import/account_statement_import_ofx \
# /tmp/oca-repos/bank-statement-import/account_statement_import_ofx \
# /opt/odoo/additional_addons/ &&\
# /opt/odoo/additional_addons/ &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/crm.git /tmp/oca-repos/crm &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/crm.git /tmp/oca-repos/crm &&\
# mv /tmp/oca-repos/crm/crm_stage_probability /opt/odoo/additional_addons/ &&\
# mv /tmp/oca-repos/crm/crm_stage_probability /opt/odoo/additional_addons/ &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/l10n-france.git /tmp/oca-repos/l10n-france &&\
mv /tmp/oca-repos/l10n-france/l10n_fr_siret \
/tmp/oca-repos/l10n-france/l10n_fr_siret_lookup \
/opt/odoo/additional_addons/ &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/partner-contact.git /tmp/oca-repos/partner-contact &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/partner-contact.git /tmp/oca-repos/partner-contact &&\
mv /tmp/oca-repos/partner-contact/partner_disable_gravatar \
mv /tmp/oca-repos/partner-contact/partner_disable_gravatar \
/tmp/oca-repos/partner-contact/partner_firstname \
/tmp/oca-repos/partner-contact/partner_firstname \
/opt/odoo/additional_addons/ &&\
/opt/odoo/additional_addons/ &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/project.git /tmp/oca-repos/project &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/project.git /tmp/oca-repos/project &&\
# mv /tmp/oca-repos/project/project_category
\
# /tmp/oca-repos/project/project_status
\
mv /tmp/oca-repos/project/project_task_default_stage \
mv /tmp/oca-repos/project/project_task_default_stage \
/tmp/oca-repos/project/project_template \
/tmp/oca-repos/project/project_template \
# /tmp/oca-repos/project/project_timeline
\
/opt/odoo/additional_addons/ &&\
/opt/odoo/additional_addons/ &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/server-auth.git /tmp/oca-repos/server-auth &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/server-auth.git /tmp/oca-repos/server-auth &&\
# mv /tmp/oca-repos/server-auth/password_security \
# mv /tmp/oca-repos/server-auth/password_security \
...
@@ -87,30 +103,28 @@ RUN set -x; \
...
@@ -87,30 +103,28 @@ RUN set -x; \
# /tmp/oca-repos/server-brand/remove_odoo_enterprise \
# /tmp/oca-repos/server-brand/remove_odoo_enterprise \
# /opt/odoo/additional_addons/ &&\
# /opt/odoo/additional_addons/ &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/server-tools.git /tmp/oca-repos/server-tools &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/server-tools.git /tmp/oca-repos/server-tools &&\
#
mv /tmp/oca-repos/server-tools/base_
search_fuzzy
\
mv /tmp/oca-repos/server-tools/base_
view_inheritance_extension
\
mv
/tmp/oca-repos/server-tools/module_change_auto_install
\
/tmp/oca-repos/server-tools/module_change_auto_install \
/opt/odoo/additional_addons/ &&\
/opt/odoo/additional_addons/ &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/server-ux.git /tmp/oca-repos/server-ux &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/server-ux.git /tmp/oca-repos/server-ux &&\
mv
/tmp/oca-repos/server-ux/base_technical_features
\
mv /tmp/oca-repos/server-ux/server_action_mass_edit \
/tmp/oca-repos/server-ux/date_range
\
# /tmp/oca-repos/server-ux/mass_editing
\
/opt/odoo/additional_addons/ &&\
/opt/odoo/additional_addons/ &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/social.git /tmp/oca-repos/social &&\
# git clone -b 16.0 --depth 1 https://github.com/OCA/social.git /tmp/oca-repos/social &&\
# mv /tmp/oca-repos/social/base_search_mail_content
\
# mv /tmp/oca-repos/social/mail_debrand \ # https://github.com/OCA/social/pull/1021
# /tmp/oca-repos/social/mail_debrand
\
# /tmp/oca-repos/social/mail_tracking \ # https://github.com/OCA/social/pull/1029
# /tmp/oca-repos/social/mail_tracking
\
# /opt/odoo/additional_addons/ &&\
# /opt/odoo/additional_addons/ &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/web.git /tmp/oca-repos/web &&\
git clone -b 16.0 --depth 1 https://github.com/OCA/web.git /tmp/oca-repos/web &&\
mv /tmp/oca-repos/web/web_environment_ribbon \
mv /tmp/oca-repos/web/web_environment_ribbon \
# /tmp/oca-repos/web/web_responsive \
# /tmp/oca-repos/web/web_responsive \
# /tmp/oca-repos/web/web_no_bubble \
# /tmp/oca-repos/web/web_no_bubble \
# /tmp/oca-repos/web/web_timeline
\
/tmp/oca-repos/web_refresher \
/tmp/oca-repos/web_theme_classic \
/opt/odoo/additional_addons/ &&\
/opt/odoo/additional_addons/ &&\
rm -rf /tmp/oca-repos/ &&\
rm -rf /tmp/oca-repos/ &&\
find /opt/odoo/additional_addons/*/i18n/ -type f -not -name 'fr.po' -delete &&\
find /opt/odoo/additional_addons/*/i18n/ -type f -not -name 'fr.po' -delete &&\
#
# Install Le Filament default dependency
# Install Le Filament default dependency
#
git clone -b 16.0 --depth 1 https://sources.le-filament.com/lefilament/remove_login_links.git /opt/odoo/private_addons/remove_login_links &&\
git clone -b 16.0 --depth 1 https://sources.le-filament.com/lefilament/remove_login_links.git /opt/odoo/private_addons/remove_login_links &&\
#
git clone -b 16.0 --depth 1 https://sources.le-filament.com/lefilament/lefilament_release_agent.git /opt/odoo/private_addons/lefilament_release_agent &&\
git clone -b 16.0 --depth 1 https://sources.le-filament.com/lefilament/lefilament_release_agent.git /opt/odoo/private_addons/lefilament_release_agent &&\
chown -R odoo:odoo /opt/odoo
chown -R odoo:odoo /opt/odoo
# Copy entrypoint script and Odoo configuration file
# Copy entrypoint script and Odoo configuration file
...
...
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter