This commit is contained in:
mol
2023-04-26 16:47:36 +08:00
parent 83969a26d9
commit 2f4742b84c
10 changed files with 224 additions and 29 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.6
WORKDIR ./rss-center
COPY requirements.txt ./
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
COPY . .
CMD ["python", "./start.py"]