first commit
This commit is contained in:
parent
af350efbdc
commit
0a7680188f
3 changed files with 381 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM python:slim
|
||||
|
||||
WORKDIR ./
|
||||
|
||||
COPY requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD [ "python", "./bot.py" ]
|
Loading…
Add table
Add a link
Reference in a new issue