mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
[docker] fix Docker image build
make commands meant to remove unnecessary caches non-fatal (pip no longer installs setuptools and wheel directly anymore)
This commit is contained in:
parent
dd62768e10
commit
11a508f470
@ -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" ]
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user