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 . .