docker-django-react
docker-django-react copied to clipboard
Installing node dependencies
When I try to install npm dependecies in the frontend, I always end up with Module not found
when running the containers.
I tried rebuilding everything as follows when installing dependencies:
docker compose down -v
cd frontend/
npm install react-table
cd ..
docker compose build --no-cache
docker compose up
to no avail
I also tried this StackOverflow solution, without success.
What is your workflow to install dependencies on the frontend side ?
Thanks a lot for your help !