mirror of
https://gitlab.com/MisterBiggs/telegram-video-download-bot.git
synced 2025-06-15 14:46:41 +00:00
11 lines
145 B
Docker
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" ]
|