From 90791c30919ff248db164246485fd4ff1e434333 Mon Sep 17 00:00:00 2001 From: Forden Date: Mon, 6 Apr 2020 00:25:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5697fa9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.7-slim + +WORKDIR /botname + +COPY requirements.txt /botname/ +RUN pip install -r /botname/requirements.txt +COPY . /botname/ + +CMD python3 /botname/bot.py