Missing cURL in python-starter image

Hi,

unfortunately the python-starter image missing the cURL package.
It is needed in the entrypoint.

if curl -IsSf http://127.0.0.1:8080/ping/ >/dev/null 2>&1; then
    echo "** SeaTable Python Starter ready"
else
    echo "** Error: SeaTable Python Starter is not ready. uWSGI is not answering."
fi

This will only succeed if you install it in the image manually which I had to do.

It has been fixed in python-starter:3.1.1.

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.