1
0

Dockerize

This commit is contained in:
2018-09-16 12:35:43 +01:00
parent 6f16104524
commit a3ddc41118
6 changed files with 64 additions and 11 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.7
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY src .
COPY config.json ./
CMD [ "python", "bot.py"]