From f8873bfbf831f43183e02ccd0f9870562449359a Mon Sep 17 00:00:00 2001 From: tiagovla Date: Mon, 6 Jan 2025 23:20:15 -0300 Subject: [PATCH] ci: set no cache using pip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 26308a5..5c9e565 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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