From 581a27680df9fa283030316af773ca760c5563b2 Mon Sep 17 00:00:00 2001 From: Lars Bogner Date: Sat, 23 May 2020 11:58:10 +0200 Subject: [PATCH] create Dockerfile, so it can be run in docker --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6883738 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM python + +#copy all the (necesary) parts +COPY . . + +#install dependencies +RUN pip install --no-cache-dir -r requirements.txt + +#run +CMD ["python", "./MailDispatcher.py"]