mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
330162f774
at least for the time being until requests fixed all HTTPAdapter / SSLContext bugs
23 lines
773 B
Docker
23 lines
773 B
Docker
FROM python:alpine
|
|
ENV LANG=C.UTF-8
|
|
|
|
RUN : \
|
|
&& apk --no-interactive update \
|
|
&& apk --no-cache --no-interactive add ffmpeg \
|
|
&& rm -rf /var/cache/apk \
|
|
&& :
|
|
|
|
RUN : \
|
|
&& python3 -B -m pip --no-cache-dir --no-input --disable-pip-version-check install -U \
|
|
pip \
|
|
&& python3 -B -m pip --no-cache-dir --no-input --disable-pip-version-check install -U \
|
|
https://github.com/mikf/gallery-dl/archive/refs/heads/master.tar.gz \
|
|
yt-dlp \
|
|
'requests<2.32' \
|
|
&& rm -rf /root/.cache/pip \
|
|
&& find /usr/local/lib/python3.*/site-packages/setuptools -name __pycache__ -exec rm -rf {} + \
|
|
&& find /usr/local/lib/python3.*/site-packages/wheel -name __pycache__ -exec rm -rf {} + \
|
|
&& :
|
|
|
|
ENTRYPOINT [ "gallery-dl" ]
|