This is probably a borderline case. In my code I have a folder named "src" and I need to append the "src" path with
sys.path.append("src").
Docker puts the code in a folder named "src", so this creates ambiguities when loading/saving files. Simply changing the name of my "src" folder fixes this issue.
This is probably a borderline case. In my code I have a folder named "src" and I need to append the "src" path with
sys.path.append("src").Docker puts the code in a folder named "src", so this creates ambiguities when loading/saving files. Simply changing the name of my "src" folder fixes this issue.