You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While working on a Docker file I encountered a problem where a version check performed by ember-cli-version-checker would fail when running in Docker. The error occurred because the Ember app source files were stored at the root of the drive.
In /src/npm-dependency-version-checker.js the following code is used for the _jsonPath property:
While working on a Docker file I encountered a problem where a version check performed by
ember-cli-version-checker
would fail when running in Docker. The error occurred because the Ember app source files were stored at the root of the drive.In
/src/npm-dependency-version-checker.js
the following code is used for the_jsonPath
property:If
basedir
is/
thenthis._jsonPath
ends up beingnull
. So this Docker file would lead to an error:This Docker file works correctly though:
The text was updated successfully, but these errors were encountered: