diff --git a/16.0/Dockerfile b/16.0/Dockerfile index ce83bf3..1bc6340 100644 --- a/16.0/Dockerfile +++ b/16.0/Dockerfile @@ -71,7 +71,7 @@ RUN pip install --no-cache-dir --upgrade pip && \ RUN curl https://raw.githubusercontent.com/odoo/odoo/${ODOO_VERSION}/requirements.txt > /tmp/requirements.txt && \ pip3 install -r /tmp/requirements.txt -# Istall libcairo2 to print barcodes +# Required print barcodes RUN pip3 install rlPyCairo # Add "odoo" user. We use same guid uid as in the official Odoo image diff --git a/16.0/Dockerfile.odoo b/16.0/Dockerfile.odoo index d03d0f7..c08018b 100644 --- a/16.0/Dockerfile.odoo +++ b/16.0/Dockerfile.odoo @@ -75,7 +75,7 @@ RUN pip install --no-cache-dir --upgrade pip && \ RUN curl https://raw.githubusercontent.com/odoo/odoo/${ODOO_VERSION}/requirements.txt > /tmp/requirements.txt && \ pip3 install -r /tmp/requirements.txt -# Istall libcairo2 to print barcodes +# Required print barcodes RUN pip3 install rlPyCairo # Add "odoo" user. We use same guid uid as in the official Odoo image diff --git a/17.0/Dockerfile b/17.0/Dockerfile index be66eff..e6c648e 100644 --- a/17.0/Dockerfile +++ b/17.0/Dockerfile @@ -33,7 +33,10 @@ RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -qq --n # some other build tools swig \ libffi-dev \ - pkg-config + pkg-config \ + # Needed to print barcodes + libcairo2-dev + # Install wkhtmltopdf RUN if [ -z "${TARGETARCH}" ]; then \ @@ -64,6 +67,9 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" RUN pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir manifestoo git-aggregator click-odoo +# Required print barcodes +RUN pip3 install rlPyCairo + # Install Odoo python dependencies RUN curl https://raw.githubusercontent.com/odoo/odoo/${ODOO_VERSION}/requirements.txt > /tmp/requirements.txt && \ diff --git a/17.0/Dockerfile.odoo b/17.0/Dockerfile.odoo index 9c60a6b..57d155e 100644 --- a/17.0/Dockerfile.odoo +++ b/17.0/Dockerfile.odoo @@ -37,7 +37,10 @@ RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -qq --n # some other build tools swig \ libffi-dev \ - pkg-config + pkg-config \ + # Needed to print barcodes + libcairo2-dev + # Install wkhtmltopdf RUN if [ -z "${TARGETARCH}" ]; then \ @@ -68,6 +71,8 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" RUN pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir manifestoo git-aggregator click-odoo +# Required print barcodes +RUN pip3 install rlPyCairo # Install Odoo python dependencies RUN curl https://raw.githubusercontent.com/odoo/odoo/${ODOO_VERSION}/requirements.txt > /tmp/requirements.txt && \ diff --git a/18.0/Dockerfile b/18.0/Dockerfile index cd813bb..e8fc5dd 100644 --- a/18.0/Dockerfile +++ b/18.0/Dockerfile @@ -33,7 +33,10 @@ RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -qq --n # some other build tools swig \ libffi-dev \ - pkg-config + pkg-config \ + # Needed to print barcodes + libcairo2-dev + # Install wkhtmltopdf RUN if [ -z "${TARGETARCH}" ]; then \ @@ -64,6 +67,8 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" RUN pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir manifestoo git-aggregator click-odoo +# Required print barcodes +RUN pip3 install rlPyCairo # Install Odoo python dependencies RUN curl https://raw.githubusercontent.com/odoo/odoo/${ODOO_VERSION}/requirements.txt > /tmp/requirements.txt && \ diff --git a/18.0/Dockerfile.odoo b/18.0/Dockerfile.odoo index 9e2cbea..7c83064 100644 --- a/18.0/Dockerfile.odoo +++ b/18.0/Dockerfile.odoo @@ -37,7 +37,10 @@ RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -qq --n # some other build tools swig \ libffi-dev \ - pkg-config + pkg-config \ + # Needed to print barcodes + libcairo2-dev + # Install wkhtmltopdf RUN if [ -z "${TARGETARCH}" ]; then \ @@ -68,6 +71,8 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH" RUN pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir manifestoo git-aggregator click-odoo +# Required print barcodes +RUN pip3 install rlPyCairo # Install Odoo python dependencies RUN curl https://raw.githubusercontent.com/odoo/odoo/${ODOO_VERSION}/requirements.txt > /tmp/requirements.txt && \