Fix missing from docker images? #13675
Replies: 1 comment
|
You are not imagining it. The release images and the tagged APISIX source use different copies of the entrypoint script. PR #12546 changed That means adding the fix to an APISIX source tag did not automatically add it to References: the original fix, the fixed 3.17.0 development entrypoint, the release-image entrypoint that is still missing the third cleanup, and the release build copying that separate script. |
Uh oh!
There was an error while loading. Please reload this page.
I recently encountered the problem reported and fixed in #12546.
Basically, in the
docker-entrypoint.shfile, throw away a unix socket file if it wasn't cleaned up during container shutdown.This fix is included in tags since version 3.14.0.
To my surprise, when downloading images from docker hub (tags 3.14.0 up to 3.17.0), the fix seems to be missing! Can anyone confirm that I'm not dreaming here?
This makes me wonder if anything else is missing... which would be bad...
Looking through the project code, it is not clear to me at all how or where the docker images are built and uploaded to docker hub. I hope the image builder just has an out-of-date copy of the
docker-entrypoint.shfile.All reactions