telegram-video-downloader/Dockerfile

5 lines
114 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
COPY src src