1
0
mirror of https://gitlab.com/MisterBiggs/telegram-video-download-bot.git synced 2025-08-02 11:31:26 +00:00
Files
Telegram-Video-Download-Bot/Dockerfile
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" ]