From bbd1ac1b77372f0f70ddf6d27649e24aee301b8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20-=20Le=20Filament?= <theo@le-filament.com> Date: Fri, 26 Jul 2024 13:59:42 +0200 Subject: [PATCH] fix(build): resolv a second 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 e2308ff..d6a46f5 100644 --- a/16.0.Dockerfile +++ b/16.0.Dockerfile @@ -40,7 +40,7 @@ RUN set -x; \ COPY --from=builder /svc /svc RUN pip3 install --no-index --find-links=/svc/wheels -r https://raw.githubusercontent.com/oca/OCB/16.0/requirements.txt &&\ - pip3 install -U --no-index --find-links=/svc/wheels astor openupgradelib phonenumbers python-stdnum>=1.18 PyYAML zxcvbn + pip3 install -U --no-index --find-links=/svc/wheels 'astor' 'openupgradelib' 'phonenumbers' 'python-stdnum>=1.18' 'PyYAML' 'zxcvbn' # Add Git Known Hosts COPY ./ssh_known_git_hosts /root/.ssh/known_hosts -- GitLab