diff --git a/Dockerfile b/Dockerfile index a9eb2e07..236fc76f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,9 +14,9 @@ RUN : \ 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 {} + \ + && ( rm -rf /root/.cache/pip || true ) \ + && ( find /usr/local/lib/python3.*/site-packages/setuptools -name __pycache__ -exec rm -rf {} + || true ) \ + && ( find /usr/local/lib/python3.*/site-packages/wheel -name __pycache__ -exec rm -rf {} + || true ) \ && : ENTRYPOINT [ "gallery-dl" ] diff --git a/gallery_dl/version.py b/gallery_dl/version.py index 0f9f91b3..c3c22c09 100644 --- a/gallery_dl/version.py +++ b/gallery_dl/version.py @@ -6,5 +6,5 @@ # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. -__version__ = "1.27.4" +__version__ = "1.27.5-dev" __variant__ = None