From 7c7d4bf36a5feba69482b6b5e5b99faee9bab812 Mon Sep 17 00:00:00 2001 From: liuyuanchuang Date: Tue, 10 Mar 2026 11:36:28 +0800 Subject: [PATCH] fix: restore wheels/ COPY without invalid shell operators COPY does not support shell operators (||, 2>/dev/null). Keep wheels/ for paddlepaddle whl installation. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7a13212..9ac810e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ WORKDIR /build # Copy dependencies COPY pyproject.toml ./ -COPY wheels/ ./wheels/ 2>/dev/null || true +COPY wheels/ ./wheels/ # Build venv RUN uv venv /build/venv --python python3.10 && \