ci: set no cache using pip
Some checks failed
build and push images / docker (push) Failing after 2m1s

This commit is contained in:
2025-01-06 23:20:15 -03:00
parent 35060d172f
commit f8873bfbf8

View File

@@ -9,7 +9,7 @@ ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV POETRY_CACHE_DIR=/opt/.cache
RUN pip install "poetry==${POETRY_VERSION}"
RUN pip install --no-cache-dir "poetry==${POETRY_VERSION}"
WORKDIR /app