1
0
mirror of https://gitlab.com/MisterBiggs/telegram-video-download-bot.git synced 2025-06-15 14:46:41 +00:00
2021-08-22 17:19:58 -07:00

11 lines
145 B
Docker

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