From 6f3d0edfbd3ffb5f438026a0dc7c1bd660522243 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Thu, 9 Jan 2025 10:21:41 +0100 Subject: [PATCH] fix: ci with docker image built (downgrade poetry) (#2876) * fix: ci with docker image built (downgrade poetry) * use latest 1.8.x poetry --------- Co-authored-by: Pavol Rusnak --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index df892ed13..44456f479 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ RUN apt-get clean RUN apt-get update RUN apt-get install -y curl pkg-config build-essential libnss-myhostname -RUN curl -sSL https://install.python-poetry.org | python3 - +RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.8.5 ENV PATH="/root/.local/bin:$PATH" WORKDIR /app @@ -32,7 +32,7 @@ RUN apt-get update && apt-get -y upgrade && \ apt-get -y install postgresql-client-14 postgresql-client-common && \ apt-get clean all && rm -rf /var/lib/apt/lists/* -RUN curl -sSL https://install.python-poetry.org | python3 - +RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.8.5 ENV PATH="/root/.local/bin:$PATH" ENV POETRY_NO_INTERACTION=1 \