2020-06-14 07:58:36 +02:00
|
|
|
FROM registry.yaltik.net/odoo:yaltik8c7
|
2022-02-28 20:19:10 +01:00
|
|
|
LABEL maintainer="Yaltik - Fabien Bourgeois <fabien@yaltik.com>"
|
2016-09-30 15:03:10 +02:00
|
|
|
|
2020-03-01 08:23:51 +01:00
|
|
|
# Extra dependency
|
2022-02-28 20:19:10 +01:00
|
|
|
RUN pip install --user --no-cache-dir unidecode==1.2.0
|
2020-03-01 08:23:51 +01:00
|
|
|
|
2018-08-28 16:01:13 +02:00
|
|
|
# External dependencies
|
2016-09-30 15:03:10 +02:00
|
|
|
WORKDIR /opt/odoo/extra-addons
|
|
|
|
RUN git clone --depth 1 -b 8.0 https://github.com/OCA/community-data-files \
|
|
|
|
&& git clone --depth 1 -b 8.0 https://github.com/OCA/l10n-france \
|
|
|
|
&& git clone --depth 1 -b 8.0 https://github.com/OCA/partner-contact \
|
|
|
|
&& git clone --depth 1 -b 8.0 https://github.com/OCA/vertical-association
|
|
|
|
|
2018-08-28 16:01:13 +02:00
|
|
|
# Custom code
|
2016-09-30 15:03:10 +02:00
|
|
|
WORKDIR /opt/odoo/custom-addons
|
2022-02-28 20:19:10 +01:00
|
|
|
RUN git clone --depth 1 -b 8.0 https://git.yaltik.net/Yaltik/yaltik_odoo_custom.git yaltik && \
|
|
|
|
git clone --depth 1 -b 2 https://git.yaltik.net/yaltik/golem.git golem
|
2016-09-30 15:03:10 +02:00
|
|
|
WORKDIR /opt/odoo
|