fix build

This commit is contained in:
2024-03-09 02:58:31 +03:00
parent a6fa21ca68
commit 9cf269b9fd
2 changed files with 11 additions and 11 deletions

View File

@@ -17,7 +17,7 @@ ENV PYTHONFAULTHANDLER=1 \
POETRY_NO_INTERACTION=1 \
POETRY_VIRTUALENVS_CREATE=false \
POETRY_CACHE_DIR='/var/cache/pypoetry' \
PATH='"$PATH":/root/.poetry/bin'
PATH="$PATH:/root/.poetry/bin"
RUN apt update \
&& apt-get update \
@@ -31,7 +31,7 @@ RUN apt update \
nano \
&& export TERM=xterm \
&& pip install --upgrade pip \
&& pip install 'poetry=="$POETRY_VERSION"' \
&& pip install "poetry==$POETRY_VERSION" \
&& poetry self add poetry-plugin-export \
# Cleaning cache:
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \