From 1ab2cec63b83aaec39470863947c320b48b90973 Mon Sep 17 00:00:00 2001 From: "zhu.boxiang" Date: Sat, 23 Apr 2022 12:01:55 +0800 Subject: [PATCH] fix: Use -U to upgrade the skyline-console with tarball Use -U to upgrade the skyline-console with tarball when building the skyline container. Change-Id: I494ee49e8ce5983823388c60124364e0a7064f36 --- container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/Dockerfile b/container/Dockerfile index 8169e76..4c92de0 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -31,7 +31,7 @@ RUN export LANG=C.UTF-8 \ && mkdir -p /etc/skyline /var/log/skyline /var/lib/skyline \ && cd /skyline \ && poetry install \ - && pip install ${SKYLINE_CONSOLE_PACKAGE_URL} \ + && pip install -U ${SKYLINE_CONSOLE_PACKAGE_URL} \ && apt-get clean \ && rm -rf ~/.cache/pip