From 4cc5e0a0d74afb67855b3004c49cbb649f0f7f41 Mon Sep 17 00:00:00 2001 From: liuyebo <1515783401@qq.com> Date: Tue, 11 Jun 2024 10:32:10 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DockerFile => dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename DockerFile => dockerfile (96%) 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