From 147a1ce35b1e6343f6f794c54ba9191c80c44b9d Mon Sep 17 00:00:00 2001 From: Ehco1996 Date: Sun, 8 Oct 2023 10:57:09 +0800 Subject: [PATCH] fix --- deploy/Dockerfile.RUNTIME | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/Dockerfile.RUNTIME b/deploy/Dockerfile.RUNTIME index c6e9f68adf..e0a9d670ab 100644 --- a/deploy/Dockerfile.RUNTIME +++ b/deploy/Dockerfile.RUNTIME @@ -7,7 +7,7 @@ LABEL Name=django-sspanel WORKDIR /tmp COPY pyproject.toml poetry.lock /tmp/ -RUN pip install --upgrade pip && - pip install --no-cache-dir poetry && - poetry config virtualenvs.create false && - poetry install --no-dev --no-interaction --no-ansi +RUN pip install --upgrade pip \ + && pip install --no-cache-dir poetry \ + && poetry config virtualenvs.create false \ + && poetry install --no-dev --no-interaction --no-ansi