↧
Answer by Günter Zöchbauer for How to include files outside of Docker's build...
On Linux you can mount other directories instead of symlinking themmount --bind olddir newdirSee https://superuser.com/questions/842642 for more details.I don't know if something similar is available...
View ArticleAnswer by Usman Ismail for How to include files outside of Docker's build...
If you read the discussion in the issue 2745 not only docker may never support symlinks they may never support adding files outside your context. Seems to be a design philosophy that files that go into...
View ArticleHow to include files outside of Docker's build context?
How can I include files from outside of Docker's build context using the "ADD" command in the Docker file?From the Docker documentation:The path must be inside the context of the build; you cannot ADD...
View Article