Following the [instructions](https://github.com/nginxinc/docker-nginx/tree/master/modules) of building nginx with extra modules, I'm including the `geoip2` module. I'm using the Alpine version. This all works fine locally, but when building the same Dockerfile in a Gitlab CI setup, it breaks. I've narrowed it down to this step: ``` >>> nginx-module-geoip2-dbg: Running split function dbg... setfattr: ngx_http_geoip2_module-debug.so: Not supported >>> ERROR: nginx-module-geoip2-dbg: dbg failed >>> ERROR: nginx-module-geoip2: prepare_subpackages failed >>> ERROR: nginx-module-geoip2: rootpkg failed ``` Seems [abuild](https://github.com/alpinelinux/abuild/blob/master/abuild.in) uses `setfattr`, which isn't supported on every environment by the looks of this error. Any ideas on how to fix this?