Missing numba.decorators module required by librosa.
TypeError: guvectorize() missing 1 required positional argument: 'signature' caused by an incompatible resampy version.
By switching to python:3.6-buster and explicitly installing numba and resampy, Docker image builds successfully and the application runs without import errors.
python:3.6-stretch
topython:3.6-buster
to avoid outdated package repositories causing build failures.numba==0.48.0
andresampy==0.2.2
to resolve ImportError and TypeError issues related tolibrosa
andresampy
.These changes address the following issues encountered during the Docker build process:
python:3.6-stretch
image references outdated Debian Stretch repositories, causing apt-get update failures.numba.decorators
module required bylibrosa
.TypeError: guvectorize() missing 1 required positional argument: 'signature'
caused by an incompatibleresampy
version.By switching to
python:3.6-buster
and explicitly installingnumba
andresampy
, Docker image builds successfully and the application runs without import errors.