31 lines
1.4 KiB
Docker
31 lines
1.4 KiB
Docker
FROM registry.yaltik.net/odoo:yaltikbase12ol8
|
|
LABEL 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 && \
|
|
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
|
|
|
|
# Custom code
|
|
WORKDIR /opt/odoo/custom-addons
|
|
RUN git clone --depth 1 -b 12.0 https://git.yaltik.net/Yaltik/yaltik_odoo_custom.git
|
|
|
|
WORKDIR /opt/odoo
|
|
|
|
# Addons dependencies
|
|
RUN pip3 install --user --no-cache-dir setuptools-scm==5.0.2 && \
|
|
pip3 install --user --no-cache-dir git+https://github.com/OCA/openupgradelib.git@3.3.2
|
|
|
|
# Scripts
|
|
COPY i18n-import.sh upd.sh /opt/odoo/
|