diff --git a/DockerFile b/dockerfile similarity index 96% rename from DockerFile rename to dockerfile index d6b8cb1..9fa3ddd 100644 --- a/DockerFile +++ b/dockerfile @@ -5,7 +5,7 @@ FROM python:3.12 WORKDIR /app # 将当前目录内容复制到容器的/app内 -COPY ./ +COPY . /app # 安装任何需要的包 RUN pip install --no-cache-dir -r requirements.txt