Заменил pip на uv
All checks were successful
/ deploy (push) Successful in 11m55s
/ build (push) Successful in 17m18s

This commit is contained in:
urec56 2025-08-11 17:44:04 +03:00
parent 8903ecd254
commit 98581c4b42
2 changed files with 2 additions and 4 deletions

View file

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

View file

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