Clarify how to specify file paths inside Docker coming from Python
I have created a Docker image with for a Flask app. Inside my Flask app, this is how I specify the file paths. dPath = os.getcwd() + "\data\distanceMatrixv2.csv" This should ideally resolve in a filepath similar to app/data/distanceMatrixv2.csv. This works…