proper repair smsboom

This commit is contained in:
OpenEthan
2023-11-23 14:32:45 +08:00
commit fee36d315b
31 changed files with 5609 additions and 0 deletions

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