[docker] remove setuptools and wheel __pycache__ directories

reduces image size by ~2MB
This commit is contained in:
Mike Fährmann
2024-03-11 21:52:23 +01:00
parent 106dfdb4c3
commit 6601e78b2f

View File

@@ -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" ]