From f5528458f7865b0ce2b899379585aa4a64e0eae1 Mon Sep 17 00:00:00 2001 From: Moviw <1973559479@qq.com> Date: Sat, 20 Jun 2026 16:43:10 +0900 Subject: [PATCH] fix: remove missing setup.cfg from Docker build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44dec4e2b..f4bd5b9a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* # Copy Python project files -COPY pyproject.toml setup.py setup.cfg MANIFEST.in ./ +COPY pyproject.toml setup.py MANIFEST.in ./ COPY sdk/src/ ./sdk/src/ # Install Python dependencies