Closed SchaeStewart closed 6 years ago
Contributors should not have to run npm install in their dev environments on their host machines. This is handled by the GoVote docker image.
npm install
If a contributor does not run npm install the node_modules directory does not get created and no packages are installed.
Change Dockerfile to fix issue.
rm -rf node_modules
npm run docker:build && npm run docker:createTables
This is a:
BUG
Expected Behavior
Contributors should not have to run
npm install
in their dev environments on their host machines. This is handled by the GoVote docker image.Current Behavior
If a contributor does not run
npm install
the node_modules directory does not get created and no packages are installed.Possible Solution
Change Dockerfile to fix issue.
Steps to Reproduce (for bugs)
rm -rf node_modules
npm run docker:build && npm run docker:createTables
- The createTables command will throw an errornpm install
on host machinenpm run docker:build && npm run docker:createTables
- The error is no longer thrownYour Environment