From 98581c4b42ec9be549543c408fc5fac36529c082 Mon Sep 17 00:00:00 2001 From: urec56 Date: Mon, 11 Aug 2025 17:44:04 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=BC=D0=B5=D0=BD=D0=B8=D0=BB=20pi?= =?UTF-8?q?p=20=D0=BD=D0=B0=20uv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/Dockerfile_back | 3 +-- docker/Dockerfile_celery | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docker/Dockerfile_back b/docker/Dockerfile_back index 2385fbb..c595132 100644 --- a/docker/Dockerfile_back +++ b/docker/Dockerfile_back @@ -8,8 +8,7 @@ WORKDIR $APP_HOME COPY requirements.txt . -RUN pip config set global.trusted-host "pypi.python.org pypi.org files.pythonhosted.org" && \ - pip install --no-cache-dir -r requirements.txt +RUN uv pip install --no-cache-dir --system -r requirements.txt COPY . . diff --git a/docker/Dockerfile_celery b/docker/Dockerfile_celery index 721d979..330243e 100644 --- a/docker/Dockerfile_celery +++ b/docker/Dockerfile_celery @@ -8,8 +8,7 @@ WORKDIR $APP_HOME COPY requirements.txt . -RUN pip config set global.trusted-host "pypi.python.org pypi.org files.pythonhosted.org" && \ - pip install --no-cache-dir -r requirements.txt +RUN uv pip install --no-cache-dir --system -r requirements.txt COPY . .