2018-12-08 09:19:13 +01:00
|
|
|
FROM registry.yaltik.net/odoo:yaltikbase12
|
2022-02-28 20:19:10 +01:00
|
|
|
LABEL maintainer="Yaltik - Fabien Bourgeois <fabien@yaltik.com>"
|
2018-12-08 09:19:13 +01:00
|
|
|
|
|
|
|
# External code
|
|
|
|
WORKDIR /opt/odoo/extra-addons
|
2022-02-28 20:19:10 +01:00
|
|
|
RUN git clone --depth 1 -b 12.0 https://github.com/OCA/community-data-files && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/OCA/l10n-france && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/OCA/queue && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/OCA/partner-contact && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/OCA/social && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/OCA/server-brand && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/OCA/web && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/OCA/website && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/muk-it/muk_base && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/muk-it/muk_misc && \
|
|
|
|
git clone --depth 1 -b 12.0 https://github.com/muk-it/muk_web && \
|
|
|
|
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
|
2022-02-28 20:19:10 +01:00
|
|
|
RUN .local/bin/pip3 install --user --no-cache-dir setuptools-scm==5.0.2 && \
|
2022-03-01 08:49:03 +01:00
|
|
|
.local/bin/pip3 install --user --no-cache-dir git+https://github.com/OCA/openupgradelib.git@3.3.2
|