perf: 不创建 venv

This commit is contained in:
ibuler
2023-08-02 15:37:30 +08:00
parent ba128e99f9
commit 958290529a

View File

@@ -89,7 +89,9 @@ ARG PIP_MIRROR=https://pypi.douban.com/simple
RUN --mount=type=cache,target=/root/.cache/pip \
set -ex \
&& pip install poetry==1.5.1 -i ${PIP_MIRROR} \
&& poetry install --only=main
&& poetry config virtualenvs.create false \
&& poetry install --only=main \
&& rm -rf /root/.cache/pip
COPY --from=stage-build /opt/jumpserver/release/jumpserver /opt/jumpserver
RUN echo > /opt/jumpserver/config.yml \