From 4fb0f11a3d530303ad780cbaee80ff2f96384624 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Sun, 6 Jan 2019 13:25:37 +0100 Subject: [PATCH] add initial Dockerfile --- Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9e64cf4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM python:3.7 + +WORKDIR /usr/src/pylokid +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . +CMD [ "python", "./main.py" ]