2020-06-14 07:58:36 +02:00
|
|
|
FROM registry.yaltik.net/odoodev:yaltik8c7
|
2022-02-28 20:19:10 +01:00
|
|
|
LABEL maintainer="Yaltik - Fabien Bourgeois <fabien@yaltik.com>"
|
2016-10-09 08:50:27 +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
|
|
|
|
|
|
|
# External dependencies
|
2016-10-09 08:50:27 +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 \
|
2022-02-28 20:19:10 +01:00
|
|
|
&& git clone --depth 1 -b 8.0 https://github.com/OCA/vertical-association && \
|
|
|
|
mkdir /opt/odoo/custom-addons/yaltik && mkdir /opt/odoo/custom-addons/golem
|
2016-10-09 08:50:27 +02:00
|
|
|
|
|
|
|
WORKDIR /opt/odoo
|