diff --git a/17.0.Dockerfile b/17.0.Dockerfile index 41e38a213d68bd359a8570d771a1cf0055f7f4d5..061572759094355112384281ffc2fb39fcdb3c84 100644 --- a/17.0.Dockerfile +++ b/17.0.Dockerfile @@ -10,7 +10,7 @@ RUN set -x; \ # 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 + pip wheel --wheel-dir=/svc/wheels astor git+https://github.com/OCA/openupgradelib.git@master phonenumbers python-stdnum>=1.18 PyYAML zxcvbn FROM python:3.11-slim-bookworm AS final @@ -61,6 +61,7 @@ RUN set -x; \ # /opt/odoo/additional_addons/ &&\ curl -L https://github.com/OCA/account-reconcile/tarball/17.0 | tar -xzC /tmp/oca-repos/ --one-top-level="account-reconcile" --strip-components 1 &&\ mv /tmp/oca-repos/account-reconcile/account_statement_base \ + /tmp/oca-repos/account-reconcile/account_reconcile_model_oca \ /tmp/oca-repos/account-reconcile/account_reconcile_oca \ /opt/odoo/additional_addons/ &&\ curl -L https://github.com/OCA/bank-statement-import/tarball/17.0 | tar -xzC /tmp/oca-repos/ --one-top-level="bank-statement-import" --strip-components 1 &&\