From 4d3e0117406746d503a0fa89939351ed74f06c1a Mon Sep 17 00:00:00 2001 From: Ruslan Bakiev <572431+veikab@users.noreply.github.com> Date: Sun, 4 Jan 2026 12:00:11 +0700 Subject: [PATCH] Use poetry install --no-root in billing image --- backends/billing/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/billing/Dockerfile b/backends/billing/Dockerfile index 2c8c1a8..1fd93f2 100644 --- a/backends/billing/Dockerfile +++ b/backends/billing/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update \ COPY pyproject.toml poetry.lock README.md ./ RUN pip install --no-cache-dir poetry==2.2.1 \ - && poetry install --no-interaction --no-ansi + && poetry install --no-interaction --no-ansi --no-root COPY . .