first commit

This commit is contained in:
Aaron Riedel 2021-12-08 18:35:28 +01:00
parent af350efbdc
commit 0a7680188f
3 changed files with 381 additions and 0 deletions

10
Dockerfile Normal file
View 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" ]