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.arm64v8

20 lines
558 B
Docker

FROM arm64v8/odoo:12
USER root
## Get pos-addons for pos_printer_network
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 12.0 https://github.com/it-projects-llc/pos-addons.git \
/opt/posbox/pos-addons \
&& git clone --depth=1 -b 12.0 https://github.com/camptocamp/odoo-cloud-platform.git \
/opt/posbox/cloud-addons
COPY odoo.conf /etc/odoo/odoo.conf
COPY addons/ /opt/posbox/extra-addons
RUN chown -R odoo.odoo /opt/posbox
USER odoo