Closed Pierstoval closed 3 years ago
Hi Alex,
I think the problem might be in docker_entrypoint
script. It gave me the same result as you posted outside of docker. That worked for me:
#!/bin/bash
"$@"
Works like a charm, thanks a lot!
Hello, I'm working on ImageMagickPHP and I'd like to use your Docker image to simplify ImageMagick's installation for testing purposes.
So far, your image provides everything I need, however I can't really run it from my scripts.
I tested locally on a Ubuntu 20.04 WSL2 setup.
For the record, I also have a local installation of ImageMagick 7.0.11-6 Q16 x86_64.
Here is what I do to reproduce:
First, create a
docker_entrypoint.sh
file containing only this:Then run this:
What I'd like to see is this:
But instead, I see this:
However, this works when I execute a command from inside the container, like this:
Any idea on what I'm missing? 🤔