Docker build failure
Opened this issue · 0 comments
adampweb commented
Docker compose build failed because the package.json was outside of the build context.
You defined context in the compose file to context: .. # root of the project
this means Docker build context directory is one level higher than compose file: <root-of-project>/src
. But the package.json file is in <root-of-project>/package.json
.