From e43b6b6f1428cdcea66b0d1d4d423119ef009864 Mon Sep 17 00:00:00 2001 From: mapleeit <522856232@qq.com> Date: Wed, 11 Aug 2021 16:13:56 +0800 Subject: [PATCH] fix: use new way to install jina perf package --- normalizer/resources/templates/dockerfile.base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/normalizer/resources/templates/dockerfile.base b/normalizer/resources/templates/dockerfile.base index 0a3bef2..e94dfbb 100644 --- a/normalizer/resources/templates/dockerfile.base +++ b/normalizer/resources/templates/dockerfile.base @@ -4,5 +4,5 @@ ARG BASE_IMAGE FROM ${BASE_IMAGE} ARG JINA_VERSION -RUN pip install --upgrade jina[perf]==${JINA_VERSION} +RUN JINA_PIP_INSTALL_PERF=1 pip install --upgrade jina==${JINA_VERSION}