From a47d6e5524c6328f6092d59fc3c9d036558ab39c Mon Sep 17 00:00:00 2001 From: NERVEbing Date: Mon, 4 Jul 2022 01:09:39 +0800 Subject: [PATCH] feat: add Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..eadf734 --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file