telegram-apk-downloader/Dockerfile

8 lines
256 B
Docker
Raw Permalink Normal View History

2020-11-25 22:40:20 +01:00
FROM python:3.8-slim-buster
WORKDIR /bot
COPY requirements.txt .
2021-10-05 12:22:39 +02:00
COPY captcha.patch .
RUN apt update && apt install patch
2020-11-25 22:40:20 +01:00
RUN pip3 install -r requirements.txt
2021-10-05 12:22:39 +02:00
RUN patch -p0 /usr/local/lib/python3.8/site-packages/gpapi/config.py < captcha.patch
2020-11-25 22:40:20 +01:00
COPY src src