1
0
Fork 0
This repository has been archived on 2022-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
odoo-pos-distribution/odoo/Dockerfile

22 lines
665 B
Docker
Raw Normal View History

2019-06-26 20:28:31 +00:00
FROM odoo:12
2018-07-11 20:23:19 +00:00
USER root
2019-07-06 11:51:28 +00:00
## Get pos-addons for pos_printer_network
RUN set -x; apt-get update \
2018-07-11 20:23:19 +00:00
&& apt-get -y install --no-install-recommends git \
&& rm -rf /var/lib/apt/lists/* \
2019-07-06 11:51:28 +00:00
&& git clone --depth=1 -b 12.0 https://github.com/it-projects-llc/pos-addons.git \
2019-08-03 22:04:43 +00:00
/opt/posbox/pos-addons \
&& git clone --depth=1 -b 12.0 https://github.com/camptocamp/odoo-cloud-platform.git \
2019-08-24 15:55:36 +00:00
/opt/posbox/cloud-addons \
&& git clone --depth=1 -b 12.0 https://github.com/CybroOdoo/CybroAddons.git \
/opt/posbox/cybro-addons
2018-07-11 20:23:19 +00:00
2019-07-06 11:51:28 +00:00
COPY odoo.conf /etc/odoo/odoo.conf
COPY addons/ /opt/posbox/extra-addons
2018-07-11 20:23:19 +00:00
2019-07-06 11:51:28 +00:00
RUN chown -R odoo.odoo /opt/posbox
2018-07-11 20:23:19 +00:00
2019-07-06 11:51:28 +00:00
USER odoo