feat: 支持 Docker 部署项目

This commit is contained in:
Soulter
2023-12-07 19:18:54 +08:00
parent 925a42e2c4
commit 63aa6ee9a5
3 changed files with 18 additions and 32 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:3.10.13-bullseye
WORKDIR /AstrBot
COPY . /AstrBot/
RUN python -m pip install -r requirements.txt
RUN python -m pip install
CMD [ "python", "main.py" ]