I have a python project that I previously ran successfully in docker containers, with all dependencies and package versions fixed using pipenv
. However, when I tried to launch the project again in Docker
after a one year, I encountered several errors.
I'm trying to understand why it worked before but now fails.
Here are some points to consider:
I thought about updating the versions of all my packages and libraries, but it's a bad idea, because after that the project code may partially or completely stop working.
Please don't judge the question harshly, because I really don't know what to do with all this.
So I come up with this: I couldn't update dependencies due to that newer versions of pipenv don`t support python 3.7, so I installed older version of pipenv, succefully updated some packages and launched the project.