File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ WORKDIR /app
44
55COPY pyproject.toml .
66RUN pip install uv && \
7- uv pip compile pyproject.toml -o requirements.txt && \
8- uv pip install --no-cache-dir -r requirements.txt
7+ uv pip compile pyproject.toml -o requirements.txt --system && \
8+ uv pip install --no-cache-dir -r requirements.txt --system
99
1010COPY src/ ./src/
1111COPY models/model.joblib ./models/
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ WORKDIR /app
44
55COPY pyproject.toml .
66RUN pip install uv && \
7- uv pip compile pyproject.toml -o requirements.txt && \
8- uv pip install --no-cache-dir -r requirements.txt
7+ uv pip compile pyproject.toml -o requirements.txt --system && \
8+ uv pip install --no-cache-dir -r requirements.txt --system
99
1010COPY src/ ./src/
1111
You can’t perform that action at this time.
0 commit comments