From 5029db5fac90d18de44e09c4aeb71c200c0a015d Mon Sep 17 00:00:00 2001 From: sangge <2251250136@qq.com> Date: Thu, 12 Oct 2023 19:48:12 +0800 Subject: [PATCH] feat: add base image --- basedockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 basedockerfile diff --git a/basedockerfile b/basedockerfile new file mode 100644 index 0000000..622815f --- /dev/null +++ b/basedockerfile @@ -0,0 +1,8 @@ +FROM python:3.11 + +COPY src /app + +WORKDIR /app + +RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple +