Заменил pip на uv
This commit is contained in:
parent
8903ecd254
commit
98581c4b42
2 changed files with 2 additions and 4 deletions
|
@ -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 . .
|
||||
|
||||
|
|
|
@ -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 . .
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue