-
Can someone help if apisix has support for Alpine or we have to build it manually ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Secret629! I'm Dosu and I’m helping the apisix team. APISIX can run on Alpine Linux, but it's not officially supported and may require manual fixes. For example, you might encounter a balancer error due to differences in OpenResty's Lua balancer implementation; this can be resolved by modifying There is an Alpine-based Docker image for the APISIX Dashboard, but it has multiple critical CVEs. The recommended approach is to use the Ubuntu-based image (e.g., To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
Hi @Secret629! I'm Dosu and I’m helping the apisix team.
APISIX can run on Alpine Linux, but it's not officially supported and may require manual fixes. For example, you might encounter a balancer error due to differences in OpenResty's Lua balancer implementation; this can be resolved by modifying
/usr/local/openresty/lualib/ngx/balancer.lua
to handle both string and table arguments for the third parameter in theset_current_peer
function (details here).There is an Alpine-based Docker image for the APISIX Dashboard, but it has multiple critical CVEs. The recommended approach is to use the Ubuntu-based image (e.g.,
apache/apisix:3.13.0-ubuntu
) for better security and support (see this d…