I am quite new to docker environment and need help in understanding / fixing the below issue.
Scenario: I am running an application (assume App1) inside the docker. This application/docker uses bazel framework. So the run time files (some C++ .h and .cc files) which are getting generated are saved inside directory Bazel-App1.
I can use those generated files in some other code inside the docker. However I am not able to link those files (which are inside the bazel-App1 directory) to the codes which I am writing outside the docker.
Is there a way I can get access to those files?
Kindly let me know if you need more details to suggest me a fix.