I need to update python dependencies during boot time. I tried to run a command into Docker file:
RUN pip install --upgrade wheel==0.43.0 setuptools==70.1.0 pip==24.0
But it’s not making a change. What is the proper way to update the packages with the hardcoded versions into Docker file?
Looks like version that I added is not making a change.