From 0a7fa5afc62a91404c7c7cac88c58abb175a7c92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20-=20Le=20Filament?= <theo@le-filament.com> Date: Mon, 17 Jun 2024 16:22:34 +0200 Subject: [PATCH] fix(build): resolv unexpected command output to file while installing pip package --- 16.0.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16.0.Dockerfile b/16.0.Dockerfile index e0b3fe1..a13835a 100644 --- a/16.0.Dockerfile +++ b/16.0.Dockerfile @@ -10,7 +10,7 @@ RUN set -x; \ # python-stdnum>=1.18 required by l10n_fr_siret and l10n_fr_siret_lookup # PyYAML required by custom scripts for adding modules (https://sources.le-filament.com/lefilament/ansible-roles/docker_odoo/-/tree/master/templates) # zxcvbn required by password_security - pip wheel --wheel-dir=/svc/wheels astor openupgradelib phonenumbers python-stdnum>=1.18 PyYAML zxcvbn + pip wheel --wheel-dir=/svc/wheels 'astor' 'openupgradelib' 'phonenumbers' 'python-stdnum>=1.18' 'PyYAML' 'zxcvbn' FROM python:3.11-slim-bullseye AS final -- GitLab