Open mbrodala opened 1 year ago
May you run docker compose exec app composer phpstan
instead ?
Sure this works but you can imagine that this a huge hassle and slows down daily development. ;-)
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Please update it if any action still required.
Still my suggestion stands.
I mark as request but i don't have any idea about how to manage it. If we add /var/www/html/vendor/bin and /usr/src/app/vendor/bin to the PATH, it's will depend about where the composer.json will be located. Usage of composer phpstan
allow more flexibility.
Fix in an unrelated project: https://github.com/syncthing/syncthing/issues/8499
@mistraloz Not sure what you mean, Composer won't magically allow running package binaries as subcommands. So installing phpstan
will not allow for composer phpstan
. Instead you will need to run composer exec phpstan
instead and keep in mind that this command is run by Composer. So e.g. use composer exec phpstan -- --args --for --phpstan
. Not really nice IMO.
e.g. use
composer exec phpstan -- --args --for --phpstan
. Not really nice IMO.
Not perfect but defined to resolve this issue with the path. And you can define your phpstan command as script part of composer.json.
The alternative is to design a feature to define the PATH with an environment variable (like a PATH_EXT env who will complete the default path with a custom one). It's not a priority because it's exist another way to do it (and IMHO it's a better way).
PS: I understand that is not perfect for your specific case but we try to resolve requirements for all cases. If you use multiple compose.json or if it's at another path than WORK_DIR/vendor/bin (you can customise it in composer.json), it's will not resolve anything. The feature with PATH_EXT (or another smart way) can be implemented, i'm will not work on it (at least in v4, maybe for v5) but i will merge a PR who do that.
Well, even multiple composer.json
are affected, it doesn't matter how many there are. You cannot invoke any package binary without full path anywhere anymore. So the best we can do for now is to at least restore this for the default working directory. This is better than not have this restored anywhere IMO. Or do I miss something?
@mistraloz Can you have another look at this? Since this behavior will likely not be reverted in Go, the PATH
updating in the Dockerfiles here should be adjusted like this:
(Finally Dockerfile.slim.blueprint
too but this needs a decision first.)
Hi @mbrodala I am sorry because i do not like said "no" but here, honestly, i cannot accept to add /var/www/html to the path, there is not very good reason to do that. I spoke with my teammate and I suggest two options that can match for you :
1/ Use $APACHE_DOCUMENT_ROOT and add it to the PATH. Per example the parent directory of it (the most of the time the framework place the public dir at the same level of the vendor so it's can match for many users (not all but not only you).
2/ Create an optionnal variable ADDITIONAL_PATH
and if it's setted, that will be just be added to the path. That can be helpful for many others cases.
If you do a PR to manage that in one of this way, i will review and merge it. To allow that you can change utils/docker-entrypoint-as-root.sh
or utils/Dockerfile.slim.blueprint
(line 285) to change the .bashrc
file.
PS: And instead of APACHE_DOCUMENT_ROOT
play with the workdir (defined at docker level) can be a good option too, or something like that.
Still thinking about this. But do you agree that the following section is pointless like this since it does not work anymore?
This is the location where an absolute path must be specified instead of a relative one.
Yes i confirm.
Expected Behavior
Assuming a Compose service
app
using this Docker image andphpstan/phpstan
is installed via Composer, running its binaryvendor/bin/phpstan
should work without the path prefixvendor/bin
:Current Behavior
Trying to run a Composer binary without path fails:
This seems to be related to Go 1.19 which dropped support for executing commands from the current directory (a "dot path") as a security measurement. Obviously the Docker engine did upgrade to this Go version in the meantime.
This Docker image adds (among others)
vendor/bin
to the$PATH
which did allow for running Composer binaries so far but this has stopped working now:https://github.com/thecodingmachine/docker-images-php/blob/098c31b33f019fb69f45df85a14f507a4f300fb5/utils/Dockerfile.slim.blueprint#L255L262
Possible Solution
Use absolute paths in the
$PATH
, so/var/www/html/vendor/bin
and/usr/src/app/vendor/bin
instead of justvendor/bin
depending on CLI/FPM/Apache variant.Steps to Reproduce (for bugs)
exec
to run that binary just by its nameContext
Developing PHP-based apps. ;-)
Your Environment