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 +