docker_images/odoo/odoo/Dockerfile.ext.10

21 lines
1013 B
Docker

FROM registry.yaltik.net/odoo:yaltikbase10
LABEL maintainer="Yaltik - Fabien Bourgeois <fabien@yaltik.com>"
# Extra dependencies
RUN pip install --user --no-cache-dir unidecode==1.2.0 && \
pip install --user --no-cache-dir git+https://github.com/OCA/openupgradelib.git@v3.3.2
# External code
WORKDIR /opt/odoo/extra-addons
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/community-data-files && \
git clone --depth 1 -b 10.0 https://github.com/OCA/reporting-engine && \
git clone --depth 1 -b 10.0 https://github.com/OCA/l10n-france && \
git clone --depth 1 -b 10.0 https://github.com/OCA/partner-contact && \
git clone --depth 1 -b 10.0 https://github.com/OCA/crm && \
git clone --depth 1 -b 10.0 https://github.com/OCA/queue && \
git clone --depth 1 -b 10.0 https://github.com/OCA/server-tools && \
git clone --depth 1 -b 10.0 https://github.com/OCA/web && \
git clone --depth 1 -b 10.0 https://github.com/Openworx/backend_theme
WORKDIR /opt/odoo