[FIX]GOLEM 2 on C7 : needs to trust pypi hosts

This commit is contained in:
Fabien BOURGEOIS 2024-06-09 09:48:01 +02:00
parent 7804999ebb
commit a4d2ddafdb
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ FROM registry.yaltik.net/odoo:yaltik8c7
LABEL maintainer="Yaltik - Fabien Bourgeois <fabien@yaltik.com>"
# Extra dependency
RUN pip install --user --no-cache-dir unidecode==1.2.0
RUN pip install --user --no-cache-dir --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org unidecode==1.2.0
# External dependencies
WORKDIR /opt/odoo/extra-addons

View File

@ -2,7 +2,7 @@ FROM registry.yaltik.net/odoodev:yaltik8c7
LABEL maintainer="Yaltik - Fabien Bourgeois <fabien@yaltik.com>"
# Extra dependency
RUN pip install --user --no-cache-dir unidecode==1.2.0
RUN pip install --user --no-cache-dir --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org unidecode==1.2.0
# External dependencies
WORKDIR /opt/odoo/extra-addons