aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..202b577
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,11 @@
1FROM python:3
2
3WORKDIR /app
4
5COPY requirements.txt ./
6
7RUN pip install --no-cache-dir -r requirements.txt
8
9ADD *.py ./
10
11CMD ["python", "./bot.py"]
Powered by cgit v1.2.3 (git 2.41.0)