telegram-video-downloader/Dockerfile

6 lines
152 B
Docker
Raw Normal View History

2021-06-19 20:45:58 +02:00
FROM python:3.8-slim-buster
WORKDIR /bot
COPY requirements.txt .
RUN pip3 install -r requirements.txt
2021-06-19 20:49:24 +02:00
RUN pip3 install --upgrade youtube-dl
2021-06-19 20:45:58 +02:00
COPY src src