Skip to content
Advertisement

My container isn’t finding the package.json to execute npm install on docker-compose

I’m trying to deploy an application using docker-compose and the app is in a folder in the host machine (in the same dir that the docker-compose file).

I’m runnig the command docker-compose up -d, however, it seems that the volume isn’t mounting because when the command npm install is executed the following message is displayed:

JavaScript

After that my container is exited.

My files:

docker-compose.yml

JavaScript

docker/Dockerfile

JavaScript

Does anybody know what I’m doing wrong?

Advertisement

Answer

Unless i am mistaken. the docker directory that responsible for the build process will be executed before mounting any volumes so the image during the build wont have any thing called package.json because its outside the context directory. try to move the dockerfile to the same root directory where you have docker-compose.yml and package.json and update the dockerfile with

JavaScript

Instead of depending on the mounted volumes at it wont be available until the build is done

Advertisement