14 lines
521 B
Docker
14 lines
521 B
Docker
|
FROM odoo:8.0
|
||
|
MAINTAINER Yaltik - Fabien Bourgeois <fabien@yaltik.com>
|
||
|
|
||
|
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
|
||
|
|
||
|
WORKDIR /opt/odoo/custom-addons
|
||
|
ADD code/yaltik.tar.gz yaltik/
|
||
|
ADD code/golem.tar.gz golem/
|
||
|
WORKDIR /opt/odoo
|