Merge pull request #50 from NERVEbing/master

新增docker运行方式
This commit is contained in:
落落
2022-07-05 21:50:27 +08:00
committed by GitHub

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.9-alpine
WORKDIR /src
COPY . ./
RUN pip install pipenv && pipenv install --deploy --ignore-pipfile
ENTRYPOINT ["pipenv", "run", "python", "smsboom.py"]