feat: add Dockerfile

This commit is contained in:
NERVEbing
2022-07-04 01:09:39 +08:00
parent eaf03ea6d9
commit a47d6e5524

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"]