23 lines
908 B
Docker
23 lines
908 B
Docker
FROM registry.yaltik.net/odoo:yaltikbase10c7
|
|
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
|
|
|
# Extra dependency
|
|
RUN pip install --user unidecode requests-oauthlib
|
|
|
|
# External code
|
|
WORKDIR /opt/odoo/extra-addons
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/community-data-files
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/reporting-engine
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/l10n-france
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/partner-contact
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/crm
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/queue
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/server-tools
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/OCA/web
|
|
RUN git clone --depth 1 -b 10.0 https://github.com/Openworx/backend_theme
|
|
|
|
WORKDIR /opt/odoo
|
|
|
|
# Addons dependencies
|
|
RUN pip install --user openupgradelib
|