-
QuestionI've seen multiple examples in the documentation of curl being used with hooks, but when I try to do it, I get: It seems like curl is not installed in the docker image? I'm using Am I missing something? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
That image is built from alpine which doesn't include curl in its base image. Including curl can increase the attack surface of a container image so it's normal to not include it in base images. If you do want to use curl in a medimatx container you'd need to build a new image with it installed. |
Beta Was this translation helpful? Give feedback.
-
For those who need more guidance on how to build the custom image: Instructions are also added on the docker image page |
Beta Was this translation helpful? Give feedback.
That image is built from alpine which doesn't include curl in its base image. Including curl can increase the attack surface of a container image so it's normal to not include it in base images. If you do want to use curl in a medimatx container you'd need to build a new image with it installed.