[docker] remove setuptools and wheel __pycache__ directories

reduces image size by ~2MB
pull/5329/head
Mike Fährmann 6 months ago
parent 106dfdb4c3
commit 6601e78b2f
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -14,6 +14,8 @@ RUN : \
https://github.com/mikf/gallery-dl/archive/refs/heads/master.tar.gz \
yt-dlp \
&& 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" ]

Loading…
Cancel
Save