denzyldick / phanalist

Performant static analyzer for PHP, which is extremely easy to use. It helps you catch common mistakes in your PHP code.
https://denzyldick.github.io/phanalist/
MIT License
131 stars 5 forks source link

Docker image doesn't work as described in README #9

Closed frewsxcv closed 1 year ago

frewsxcv commented 1 year ago
> docker run -v (pwd):/var/src ghcr.io/denzyldick/phanalist:latest
Unable to find image 'ghcr.io/denzyldick/phanalist:latest' locally
latest: Pulling from denzyldick/phanalist
7264a8db6415: Pull complete 
905e295ea952: Pull complete 
Digest: sha256:f5eff5e57b0a899c343382d48d44783e10229ef83adb644ed5e97778d6ca96e3
Status: Downloaded newer image for ghcr.io/denzyldick/phanalist:latest
exec ./phanalist: no such file or directory
denzyldick commented 1 year ago

Hi,

Thanks for submitting this issue. I will look into it. When I fix it. I will let you know so you can test it.

denzyldick commented 1 year ago

The issue has been fixed. You can now successfully run the docker command.

 docker run -it -v $(pwd):/var/src ghcr.io/denzyldick/phanalist:latest
denzyldick commented 1 year ago

Thanks.