Initial commit

This commit is contained in:
2022-04-03 10:17:37 +02:00
parent 2315419319
commit 35ae416a1e
5 changed files with 165 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3.8-alpine
WORKDIR /usr/src/app
COPY ./requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . ./
CMD ["python", "bot.py"]