mirror of https://github.com/Nezreka/SoulSync.git
User reported (eN1gma) the dev nightly Docker image fails to start with ``ModuleNotFoundError: No module named 'requests'`` despite ``requests>=2.31.0`` being correctly listed in requirements.txt. Local Docker builds + python imports both work — the issue is a poisoned GHA Docker layer cache: the ``pip install -r requirements.txt`` step is cached based on the file's content hash, so once a bad layer (e.g. an aborted/incomplete pip install from a previous run) makes it into the cache, every subsequent build reuses it. Touching this comment changes the requirements.txt hash, which forces ``cache-from: type=gha`` in dev-nightly.yml to skip the poisoned layer and run a fresh ``pip install``. The next dev nightly build (or push-to-dev triggered build) will produce a clean image. No functional change.pull/474/head
parent
96c89e8936
commit
a9dcd60d3f
Loading…
Reference in new issue