2018-12-08 09:19:13 +01:00
|
|
|
FROM registry.yaltik.net/odoo:yaltikbase12
|
|
|
|
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
|
|
|
|
|
|
|
# External code
|
|
|
|
WORKDIR /opt/odoo/extra-addons
|
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/community-data-files
|
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/l10n-france
|
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/queue
|
2018-12-13 18:19:31 +01:00
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/partner-contact
|
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/social
|
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/server-brand
|
2018-12-14 09:33:20 +01:00
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/web
|
2018-12-13 18:19:31 +01:00
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/website
|
2018-12-08 09:19:13 +01:00
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/muk-it/muk_base
|
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/muk-it/muk_misc
|
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/muk-it/muk_web
|
2018-12-24 09:31:37 +01:00
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/muk-it/muk_website
|
2018-12-08 09:19:13 +01:00
|
|
|
|
2019-02-01 08:52:27 +01:00
|
|
|
# Custom code
|
|
|
|
WORKDIR /opt/odoo/custom-addons
|
|
|
|
RUN git clone --depth 1 -b 12.0 https://git.yaltik.net/Yaltik/yaltik_odoo_custom.git
|
|
|
|
|
2018-12-08 09:19:13 +01:00
|
|
|
WORKDIR /opt/odoo
|
|
|
|
|
|
|
|
# Addons dependencies
|
2021-09-26 11:15:59 +02:00
|
|
|
RUN .local/bin/pip3 install --user setuptools-scm
|
2021-09-26 11:11:13 +02:00
|
|
|
RUN .local/bin/pip3 install --user git+https://github.com/OCA/openupgradelib.git
|