telegram-video-downloader/Dockerfile

8 lines
250 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 .
2021-07-04 16:00:07 +02:00
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg; \
rm -rf /var/lib/apt/lists/*;
RUN pip3 install -U youtube-dl
2021-06-19 20:45:58 +02:00
RUN pip3 install -r requirements.txt
COPY src src