mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-05 23:47:41 +08:00
fix: unpin pip tooling in Docker build
Allow Docker builds to install the latest pip and pip-tools versions instead of constraining them, reducing maintenance overhead from version pin drift. Made-with: Cursor
This commit is contained in:
+2
-2
@@ -67,8 +67,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY requirements.in requirements.in
|
COPY requirements.in requirements.in
|
||||||
RUN python3 -m venv ${VENV_PATH} \
|
RUN python3 -m venv ${VENV_PATH} \
|
||||||
&& pip install --upgrade "pip<25.0" \
|
&& pip install --upgrade "pip" \
|
||||||
&& pip install "Cython~=3.1.2" "pip-tools<7.5" \
|
&& pip install "Cython~=3.1.2" "pip-tools" \
|
||||||
&& pip-compile requirements.in \
|
&& pip-compile requirements.in \
|
||||||
&& pip install -r requirements.txt
|
&& pip install -r requirements.txt
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user