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
676 B
Docker
Raw Normal View History

2022-08-06 18:39:49 +00:00
FROM odoo:15
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
2022-08-06 18:39:49 +00:00
#RUN set -x; apt-get update \
# && apt-get -y install --no-install-recommends git \
# && rm -rf /var/lib/apt/lists/* \
# && git clone --depth=1 -b 13.0 https://github.com/it-projects-llc/pos-addons.git \
# /opt/posbox/pos-addons \
# && git clone --depth=1 -b 13.0 https://github.com/camptocamp/odoo-cloud-platform.git \
# /opt/posbox/cloud-addons \
# && git clone --depth=1 -b 13.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
2022-08-06 18:39:49 +00:00
#COPY addons/ /opt/posbox/extra-addons
2018-07-11 20:23:19 +00:00
2022-08-06 18:39:49 +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