From efa8f34e77333b56aaa6b1e25ec9a2227ab847a0 Mon Sep 17 00:00:00 2001 From: Sun Ruoxi Date: Wed, 15 Jul 2026 10:20:02 +0800 Subject: [PATCH] fix run command Signed-off-by: Sun Ruoxi --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6be0dd0..11c190b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,9 @@ WORKDIR /workspace # 复制 requirements.txt 并安装 Python 依赖 COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +RUN apt update +RUN apt install python3-pip +RUN pip3 install --no-cache-dir -r requirements.txt # 复制 server.py 到 workspace COPY server.py /workspace/