diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 11 |
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 @@ | |||
1 | FROM python:3 | ||
2 | |||
3 | WORKDIR /app | ||
4 | |||
5 | COPY requirements.txt ./ | ||
6 | |||
7 | RUN pip install --no-cache-dir -r requirements.txt | ||
8 | |||
9 | ADD *.py ./ | ||
10 | |||
11 | CMD ["python", "./bot.py"] | ||