1
0
mirror of https://gitlab.com/MisterBiggs/telegram-video-download-bot.git synced 2025-08-03 03:51:28 +00:00

Initial commit

This commit is contained in:
2021-08-22 17:19:58 -07:00
commit 49777095ad
5 changed files with 183 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.9-buster
COPY requirements.txt ./
RUN pip install --no-cache-dir -U -r requirements.txt
COPY . .
CMD [ "python", "./bot.py" ]