From 7d8585d9f6f79e4bf571781cb1ecf0ad3d1261ae Mon Sep 17 00:00:00 2001 From: ITQ Date: Fri, 21 Nov 2025 15:32:03 +0300 Subject: [PATCH] chore: improvements in Containerfile --- Containerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index ecac0c2..5875d0d 100644 --- a/Containerfile +++ b/Containerfile @@ -63,11 +63,13 @@ ENV PYTHONDONTWRITEBYTECODE=1 \ WORKDIR /app +RUN uv sync --no-install-project --group tests --frozen --no-cache + COPY ./src ./src COPY ./tests ./tests -RUN uv sync --group tests --frozen --no-cache +RUN uv pip install . -e RUN mkdir -p /app/cov