Closed ametad closed 2 years ago
It will work when you explicitly set the working directory, e.g. with a docker run command:
$ docker run --rm -it --volume $(pwd):/app --workdir /app prooph/composer:7.4 [your composer command]
It's a bug. It should have the default workdir set to /app
. I will provide a fix.
It's fixed, please pull the latest images.
For years now I use the following snippet to run Composer on my Linux machine:
$ docker run --rm -it --volume $(pwd):/app prooph/composer:7.4 [your composer command]
Since today I got this error message:
Last week on Thursday I did not get the error.
I see there are some changes made in the past few days, is there something changed? For example is the
/app
path inside the container not the working dir anymore?