telegram-apk-downloader/Dockerfile

5 lines
114 B
Docker
Raw Normal View History

2020-11-25 22:40:20 +01:00
FROM python:3.8-slim-buster
WORKDIR /bot
COPY requirements.txt .
RUN pip3 install -r requirements.txt
COPY src src